diff options
| author | Christian Tismer <tismer@stackless.com> | 2018-08-25 17:06:06 +0200 |
|---|---|---|
| committer | Christian Tismer <tismer@stackless.com> | 2018-08-27 07:25:35 +0000 |
| commit | 9382b01a2f6ff8ff294fe73f2d27b24f5c8dfb3c (patch) | |
| tree | 3c3b86d49a8f02c7595a0c486c4ddbf486113640 /sources/pyside2/PySide2/support/signature/loader.py | |
| parent | 9385e1731153eebb25885f2bf51bb9cd91d6f7a4 (diff) | |
Make signature module unconditional
After the signature module has been around for quite a while,
there is no longer a reason to leave it optional.
At the same time, we set the minimum Python 3 version to 3.5 .
Some comments are reworked as well, but nothing real changed.
Task-number: PYSIDE-510
Change-Id: I9e960f390d507d24bb45f7028838755fe23e751d
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside2/PySide2/support/signature/loader.py')
| -rw-r--r-- | sources/pyside2/PySide2/support/signature/loader.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/sources/pyside2/PySide2/support/signature/loader.py b/sources/pyside2/PySide2/support/signature/loader.py index 1827ca454..984e738df 100644 --- a/sources/pyside2/PySide2/support/signature/loader.py +++ b/sources/pyside2/PySide2/support/signature/loader.py @@ -40,13 +40,18 @@ from __future__ import print_function, absolute_import """ +loader.py + +The loader has to lazy-load the signature module and also provides a few +Python modules to support Python 2.7 . + This file was originally directly embedded into the C source. After it grew more and more, I now prefer to have it as Python file. -The remaining stub loader is a short string now. +The remaining stub loader in the C source is now only a short string. -The loader has to lazy-load the signature module and also provides a few -Python modules that I consider essential and therefore built-in. -This version does not use an embedded .zip file. +This version does no longer use an embedded .zip file but is a package. +The old code without a package but with zip compression can still be found +at https://codereview.qt-project.org/#/c/203533/ for reference. """ import sys |
