| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
compatible with regular files (in particular it now supports the context
management protocol).
|
| |
|
|
|
|
| |
There are other issues left, but these were basics (e.g. keys().sort()).
|
| |
|
| |
|
|
|
|
| |
From SF patch #852334.
|
|
|
|
|
|
|
|
| |
(with one small bugfix in bgen/bgen/scantools.py)
This replaces string module functions with string methods
for the stuff in the Tools directory. Several uses of
string.letters etc. are still remaining.
|
|
|
|
|
|
|
| |
Fixed a few compiler warnings.
freeze.py now produces binaries which can import shared
modules (unlike before).
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(With slight cosmetic improvements to shorten lines and a grammar fix
to a docstring.)
This addes -X and -E options to freeze. From the docstring:
-X module Like -x, except the module can never be imported by
the frozen binary.
-E: Freeze will fail if any modules can't be found (that
were not excluded using -x or -X).
|
| |
|
|
|
|
| |
Added some declarations to shut up compiler.
|
|
|
|
|
|
|
|
|
|
|
|
| |
Sjoerd writes:
This version of freeze creates one file per Python module, instead of
one humongous file for all Python modules.
bkfile: new module to used to write files with backups. No new file
is produced if the new contents is identical to the old.
New option "-x excluded-module" for modulefinder test program.
New option "-i filename" for freeze main program to include a list of
options in place of the -i option.
|
| |
|
|
|
|
|
|
| |
used. It is useful to implicitly set the -O flag in the frozen
application.
(Sjoerd Mullender)
|
| |
|
| |
|
|
|
|
|
|
|
| |
We have a whole new module finder that uses the actual Python
parser and scans the bytecode for IMPORT_NAME and IMPORT_FROM.
This requires some support in import.c (that hasn't been checked in).
New command line options for this: -d, -q, -m.
|
| |
|
| |
|
|
|