summaryrefslogtreecommitdiffstats
path: root/Tools/freeze/bkfile.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22826: The result of open() in Tools/freeze/bkfile.py is now betterSerhiy Storchaka2015-03-201-45/+22
| | | | | compatible with regular files (in particular it now supports the context management protocol).
* Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded withSerhiy Storchaka2015-03-111-1/+1
| | | | imp.reload(). Patch by Thomas Kluyver.
* Use OESeeror instead of os.error (#16720)Andrew Svetlov2012-12-241-2/+2
| | | | Patch by Serhiy Storchaka.
* Minimal changes to make the "freeze" tool work again.Guido van Rossum2007-06-121-1/+4
| | | | There are other issues left, but these were basics (e.g. keys().sort()).
* Fix test_frozen.Guido van Rossum2007-02-091-1/+0
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-41/+41
|
* Sjoerd Mullender: cmp.py is obsolete...Guido van Rossum2000-04-281-5/+2
|
* New version, with contributions from Sjoerd Mullender and Mark Hammond.Guido van Rossum1998-08-251-0/+50
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.