Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) | Steve Dower | 2016-09-10 | 1 | -2/+2 |
| | |||||
* | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 1 | -1/+1 |
| | | | | Based on patch by Ville Skyttä. | ||||
* | fix usage of undefined name (#25504) | Benjamin Peterson | 2015-10-30 | 1 | -1/+1 |
| | |||||
* | Issue #23615: Module tarfile is now can be reloaded with imp.reload(). | Serhiy Storchaka | 2015-03-11 | 1 | -1/+1 |
| | |||||
* | #18803: fix more typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-25 | 2 | -3/+3 |
| | |||||
* | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| | |||||
* | Merged revisions 85768-85771,85773,85777,85823,85825 via svnmerge from | Georg Brandl | 2010-11-26 | 2 | -7/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85768 | georg.brandl | 2010-10-21 14:59:14 +0200 (Do, 21 Okt 2010) | 1 line #9919: fix off-by-one error in lineno command in Misc/gdbinit; also add newline to its output. ........ r85769 | georg.brandl | 2010-10-21 15:01:23 +0200 (Do, 21 Okt 2010) | 1 line Fix missing import. ........ r85770 | georg.brandl | 2010-10-21 15:29:10 +0200 (Do, 21 Okt 2010) | 1 line #3077: fix h2py substitution of character literals. ........ r85771 | georg.brandl | 2010-10-21 15:34:51 +0200 (Do, 21 Okt 2010) | 1 line #1203650: allow larger list of files in windows makefile for freeze. ........ r85773 | georg.brandl | 2010-10-21 15:45:52 +0200 (Do, 21 Okt 2010) | 1 line #4829: better error message for invalid file mode ........ r85777 | georg.brandl | 2010-10-21 17:44:51 +0200 (Do, 21 Okt 2010) | 1 line Add .hgeol file for the Mercurial EOL extension. ........ r85823 | georg.brandl | 2010-10-24 16:32:45 +0200 (So, 24 Okt 2010) | 1 line Fix style. ........ r85825 | georg.brandl | 2010-10-24 17:16:02 +0200 (So, 24 Okt 2010) | 1 line Add documentation about the default warnings filters. ........ | ||||
* | #6078: _warnings is a builtin module and has no standard init_warnings function. | Georg Brandl | 2009-05-22 | 1 | -1/+1 |
| | |||||
* | Remove .cvsignore files, as they live in svn:ignore | Martin v. Löwis | 2005-10-30 | 1 | -6/+0 |
| | | | | properties now. | ||||
* | Whitespace normalization, via reindent.py. | Tim Peters | 2004-07-18 | 8 | -375/+373 |
| | |||||
* | Small fixes in freeze.py. | Gustavo Niemeyer | 2004-05-08 | 1 | -3/+3 |
| | |||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 2 | -2/+2 |
| | | | | From SF patch #852334. | ||||
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
| | | | | (From SF patch #810751) | ||||
* | Patch #713645: Fix typo. | Martin v. Löwis | 2003-09-20 | 1 | -1/+1 |
| | |||||
* | modulefinder.py is not a freeze private module anymore. | Gustavo Niemeyer | 2003-05-26 | 1 | -1/+1 |
| | |||||
* | replace obsolete 'exceptions' implicit by 'warnings' | Just van Rossum | 2003-03-18 | 1 | -1/+1 |
| | |||||
* | [ 684677 ] Allow freeze to exclude implicits | Just van Rossum | 2003-03-08 | 1 | -3/+6 |
| | |||||
* | moving modulefinder.py to the standard library | Just van Rossum | 2002-12-31 | 1 | -486/+0 |
| | |||||
* | refactor universal line endings detection | Just van Rossum | 2002-11-26 | 1 | -8/+8 |
| | |||||
* | Polish some bits to silence pychecker. | Thomas Heller | 2002-11-26 | 1 | -1/+1 |
| | |||||
* | Don't look for modules in the registry any longer. | Thomas Heller | 2002-11-26 | 1 | -38/+0 |
| | | | | | | | | | | Mark writes in private email: "Modules listed in the registry was a dumb idea. This whole scheme can die. AFAIK, no one in the world uses it (including win32all since the last build)." (See also SF #643711) | ||||
* | Add a note that this file should be kept compatible with Python 1.5.2, | Thomas Heller | 2002-11-25 | 1 | -2/+10 |
| | | | | | | | per PEP 291 (although there are currently string methods used). This patch makes it compatible with 2.2, at least, by detecting universal newline support. | ||||
* | Enhancement for ModuleFinder, it can now handle _xmlplus aka PyXML. | Thomas Heller | 2002-11-14 | 1 | -0/+14 |
| | | | | Fixes SF # 637835. | ||||
* | Fix SF # 464405, freeze doesn't like DOS files on Linux | Neal Norwitz | 2002-11-12 | 1 | -2/+2 |
| | | | | Use universal newline support when opening a file for freezing. | ||||
* | SF # 627900, Bytecode copy bug in freeze | Neal Norwitz | 2002-11-12 | 1 | -1/+2 |
| | | | | | Pass co_freevars and co_cellvars to new.code(). Will backport. | ||||
* | Remove another mention of "import string". | Walter Dörwald | 2002-09-12 | 1 | -3/+2 |
| | | | | | The file itself still mentions Python 1.5.1, so it might need further updates. | ||||
* | Apply diff2.txt from SF patch http://www.python.org/sf/572113 | Walter Dörwald | 2002-09-11 | 8 | -39/+33 |
| | | | | | | | | (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. | ||||
* | Update freeze to use zlib 1.1.4. | Mark Hammond | 2002-07-03 | 1 | -2/+2 |
| | | | | From patch: [ 574532 ] Update freeze to use zlib 1.1.4 | ||||
* | Patch 574531/Bug 574570 - allow freeze on windows to use the _winreg | Mark Hammond | 2002-06-28 | 1 | -1/+5 |
| | | | | extension. | ||||
* | Remove the only use of a string method. | Thomas Heller | 2002-06-10 | 1 | -1/+1 |
| | | | | Fixes SF 564840. | ||||
* | Updated freeze.py to the new Makefile symbol layout. | Marc-André Lemburg | 2002-04-04 | 4 | -6/+4 |
| | | | | | | | Fixed a few compiler warnings. freeze.py now produces binaries which can import shared modules (unlike before). | ||||
* | Part 2/2 of SF patch #416704: More robust freeze, by Toby Dickenson. | Guido van Rossum | 2001-10-18 | 3 | -11/+59 |
| | | | | | | | | | | | | | (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). | ||||
* | Fix for bug #442374 - Modulefinder registry support broken | Mark Hammond | 2001-09-05 | 1 | -13/+36 |
| | |||||
* | Separate CFLAGS and CPPFLAGS. CFLAGS should not contain preprocessor | Neil Schemenauer | 2001-06-02 | 2 | -2/+4 |
| | | | | directives, which is the role of CPPFLAGS. Closes SF patch #414991. | ||||
* | Patch #409504: Fix regex problems, consider \-continuation lines in Makefile | Martin v. Löwis | 2001-03-21 | 2 | -2/+15 |
| | | | | and Setup. | ||||
* | Lawrence Hudson, SF #401702: Modify co_filename in frozen programs | Guido van Rossum | 2001-03-20 | 2 | -3/+42 |
| | | | | | | | | | | | | | | | This patch was developed primarily to reduce the size of the frozen binary. It is particularly useful when freezing for 'small' platforms, such as Palm OS, where you really want to save that last miserable byte. A limitation of this patch is that it does not provide any feedback about the replacements being made. As the path matching is case-sensitive this may lead to unexpected behaviour for DOS and Windows people, eg > freeze.py -r C:\Python\Lib\=py\ goats.py should probably be: > freeze.py -r c:\python\lib\=py\ goats.py | ||||
* | Teach Tools/freeze/makeconfig.py and Tools/freeze/parsesetup.py to use | Eric S. Raymond | 2001-03-18 | 2 | -10/+12 |
| | | | | the re package rather than the obsolete regex. | ||||
* | Patch 103928: Correct zlib freeze settings for Win32. | Tim Peters | 2001-02-23 | 1 | -2/+2 |
| | |||||
* | Windows: ucnhash subproject no longer exists (/F merged into unicodedata). | Tim Peters | 2001-01-24 | 1 | -3/+0 |
| | |||||
* | New, improved README from Mike Clarkson. Wow! | Guido van Rossum | 2001-01-03 | 1 | -20/+143 |
| | |||||
* | Application of [ Patch #102226 ] freeze/modulefinder.py should use _winreg, ↵ | Mark Hammond | 2000-11-06 | 1 | -15/+6 |
| | | | | not win32api | ||||
* | Fix for bug #113693: with the changes to the IMPORT_FROM opcodes, this | Guido van Rossum | 2000-09-15 | 1 | -0/+7 |
| | | | | crashed on an assert. | ||||
* | Add the exceptions module to the 'never' list -- it is built in. | Guido van Rossum | 2000-07-28 | 1 | -1/+1 |
| | |||||
* | change some occurence of python15.dll to python20.dll | Peter Schneider-Kamp | 2000-07-24 | 2 | -6/+6 |
| | | | | closes patch #100956 | ||||
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 3 | -4/+4 |
| | | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;) | ||||
* | Patch by Toby Dickenson, mentored by Mark Hammond, to support | Guido van Rossum | 2000-07-13 | 4 | -7/+62 |
| | | | | | automatically finding (most of) the standard PYD extensions, and to remove the hardcoded Python version. | ||||
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -1/+1 |
| | |||||
* | Toby Dickenson: | Guido van Rossum | 2000-05-06 | 1 | -4/+1 |
| | | | | | | | Fix for problem with freeze when both "-m" and "-s service" options are used. (Blessed by MarkH) | ||||
* | Sjoerd Mullender: | Guido van Rossum | 2000-05-02 | 1 | -1/+1 |
| | | | | Bad % formatting. | ||||
* | Sjoerd Mullender: cmp.py is obsolete... | Guido van Rossum | 2000-04-28 | 1 | -5/+2 |
| |