- 11a5270 Make None return explicit by Jeremy Hylton · 23 years ago
- c58e984 import base64 at the top to avoid two different imports at other times by Jeremy Hylton · 23 years ago
- ec77274 ensure_filename() only takes one argument. by Jeremy Hylton · 23 years ago
- adb2b38 Reindent lines to improve readability by Jeremy Hylton · 23 years ago
- 711f91c Remove (commented out) options that have moved into the distribution. by Jeremy Hylton · 23 years ago
- d003abc get_script() implicitly returned None and also had explicit returns. by Jeremy Hylton · 23 years ago
- d53f6e4 global _option_order is not used by Jeremy Hylton · 23 years ago
- e6f40ea Fix bug in recent change to logging code. by Jeremy Hylton · 23 years ago
- a2f9989 Fix unused local variables caught by pychecker. by Jeremy Hylton · 23 years ago
- a181ec0 Set repeat metadata for an option based on repeat local var not constant. by Jeremy Hylton · 23 years ago
- 332a146 Remove unused imports caught by pychecker by Jeremy Hylton · 23 years ago
- cd8a114 Make setup.py less chatty by default. by Jeremy Hylton · 23 years ago
- 6fa82a3 A simple log mechanism styled after the proposed std library module by Jeremy Hylton · 23 years ago
- 9923ffe Address SF bug 519621: slots weren't traversed by GC. by Guido van Rossum · 23 years ago
- e22bc1e The comment said: by Jeremy Hylton · 23 years ago
- e53e7a2 Inverted test for small speedup by Raymond Hettinger · 23 years ago
- b0dc1a3 Fiddle wording. by Michael W. Hudson · 23 years ago
- b5b5a26 Fix SF bug #557436, TclError is a str should be an Exception by Neal Norwitz · 23 years ago
- 293dd4b Fix up Guido's markup. by Fred Drake · 23 years ago
- 16c8d70 When using a Python that has not been installed to build 3rd-party by Fred Drake · 23 years ago
- 474458d Add constants BOM_UTF8, BOM_UTF16, BOM_UTF16_LE, BOM_UTF16_BE, by Walter Dörwald · 23 years ago
- bc48826 Patch #555929: Cygwin AH_BOTTOM cleanup patch (*** version 2 ***) by Jason Tishler · 23 years ago
- 1bdd9b0 Test repair now that module.__init__ requires a name and initializes by Guido van Rossum · 23 years ago
- bdabecc Repair the test (adding a docstring to the module type changed the by Guido van Rossum · 23 years ago
- ed3e09f Add a docstring to the module type. by Guido van Rossum · 23 years ago
- 2e4e026 Surprising fix for SF bug 563060: module can be used as base class. by Guido van Rossum · 23 years ago
- c3a787e Surprising fix for SF bug 563060: module can be used as base class. by Guido van Rossum · 23 years ago
- 88f72ff Replace .keys() with .iteritems(). Second review and test by Alex. by Raymond Hettinger · 23 years ago
- b65c65b Address the residual issue with the fix for SF 551412 in by Guido van Rossum · 23 years ago
- 155a34d The warning filter was ineffective when this module was invoked as a script. by Guido van Rossum · 23 years ago
- 92cf95f Addressed SF bug 421973 (finally). by Guido van Rossum · 23 years ago
- 40bbae3 Fix HTTPError __init__ for cases where fp is None. by Jeremy Hylton · 23 years ago
- 65230a2 Remove uses of the string and types modules: by Walter Dörwald · 23 years ago
- a401ae4 Fix a regression from the 1.68->1.69 checkin: by Walter Dörwald · 23 years ago
- c5000df regrtest has a new by Tim Peters · 23 years ago
- 69e18af _parsebody(): Fix for the new message/rfc822 tree structure (the by Barry Warsaw · 23 years ago
- 2c68506 Generator.__call__() => Generator.flatten() by Barry Warsaw · 23 years ago
- d2b2e53 header_encode(), encode(): Use _floordiv() from the appropriate by Barry Warsaw · 23 years ago
- 21f77ac Use absolute import paths for intrapackage imports. by Barry Warsaw · 23 years ago
- 8ba76e8 Use absolute import paths for intrapackage imports. by Barry Warsaw · 23 years ago
- 524af6f Use absolute import paths for intrapackage imports. by Barry Warsaw · 23 years ago
- 7dc865a flatten(): Renamed from __call__() which is (silently) deprecated. by Barry Warsaw · 23 years ago
- ff49279 _intdiv2() -> _floordiv(), merge of uncommitted changes. by Barry Warsaw · 23 years ago
- e0d4972 Replaced .keys() with dictionary iterators by Raymond Hettinger · 23 years ago
- 1fab9ee Get email test to pass. Barry, hope this is what you had in mind by Neal Norwitz · 23 years ago
- 1ccccc0 Make test_mhlib run again. by Michael W. Hudson · 23 years ago
- 9ea6c19 Patch #552060: Add SSLFakeSocket.sendall. Also committed for 2.2 maint. by Martin v. Löwis · 23 years ago
- 10ff706 Replaced boolean tests with is None. by Raymond Hettinger · 23 years ago
- f13eb55 Replace boolean test with is None. by Raymond Hettinger · 23 years ago
- 1931ca7 Use somewhat longer C++ program to detect whether linking requires the C++ by Martin v. Löwis · 23 years ago
- 32200ae Replaced obsolete stat module constants with equivalent attributes by Raymond Hettinger · 23 years ago
- 16e3c42 Replace boolean test with is None. by Raymond Hettinger · 23 years ago
- 793d4b4 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 23 years ago
- 54f0222 SF 563203. Replaced 'has_key()' with 'in'. by Raymond Hettinger · 23 years ago
- 9d5e4aa Bump to version 2.0.5, and also use absolute import paths. by Barry Warsaw · 23 years ago
- 2f514a8 These two classes provide bases for more specific content type subclasses. by Barry Warsaw · 23 years ago
- 1c30aa2 The _compat modules now export _floordiv() instead of _intdiv2() for by Barry Warsaw · 23 years ago
- c5d1c04 Slightly better docstring by Barry Warsaw · 23 years ago
- 93b2cc4 A bogus assert in the new listiter code prevented starting Python in a by Tim Peters · 23 years ago
- bb98c8c _is_unicode(): Use UnicodeType instead of the unicode builtin for by Barry Warsaw · 23 years ago
- 936654b Replaced boolean test with is None by Raymond Hettinger · 23 years ago
- 094662a Replace boolean test with is None by Raymond Hettinger · 23 years ago
- 0f4940c Replaced boolean test with 'is None' by Raymond Hettinger · 23 years ago
- 8989ea6 Use is None rather than general boolean by Raymond Hettinger · 23 years ago
- a144900 Use is None rather than general boolean by Raymond Hettinger · 23 years ago
- c041860 Use is None rather than general boolean by Raymond Hettinger · 23 years ago
- 3e12905 Remove unused static function by Neal Norwitz · 23 years ago
- 14bd6de SF 560736. Optimize list iteration by filling the tp_iter slot. by Raymond Hettinger · 23 years ago
- 59b2a74 SF bug 533625 (Armin Rigo). rexec: potential security hole by Guido van Rossum · 23 years ago
- 9788384 Explain that tp_basicsize must provide alignment for the items. by Guido van Rossum · 23 years ago
- ebb4190 Use string methods, remove import string by Neal Norwitz · 23 years ago
- ab19962 Use more string methods, remove import string by Neal Norwitz · 23 years ago
- 3f8dae7 Fix typo by Neal Norwitz · 23 years ago
- a407300 Implement the intention of SF patch 472523 (but coded differently). by Guido van Rossum · 23 years ago
- 32a7e7f Change name from string to basestring by Neal Norwitz · 23 years ago
- 9b414ac Update links and information on PyQt/PyKDE. by Fred Drake · 23 years ago
- 7fdfc2d Replace '== None' with 'is None' by Raymond Hettinger · 23 years ago
- 79e39bd Add definition of Py_IgnoreEnvironmentFlag (needed at least in debug mode). by Guido van Rossum · 23 years ago
- 7616504 Fix printing plural (s or ""). by Neal Norwitz · 23 years ago
- 5aee504 Remove import of re, it is not used by Neal Norwitz · 23 years ago
- 7ce734c Use string methods where possible, and remove import string by Neal Norwitz · 23 years ago
- 05ab2e6 Fix SF bug [ 561825 ] Confusing error for "del f()" by Jeremy Hylton · 23 years ago
- 5352d8c Py_IgnoreEnvironmentFlag should be extern, since it is declared in pythonrun.c by Neal Norwitz · 23 years ago
- 8c20916 Remove unneeded import by Andrew M. Kuchling · 23 years ago
- 5e2c5fa imp_load_module(): correct and comment the sense of the test for '+' by Guido van Rossum · 23 years ago
- 4ae6fae Cover a few corners in the 'U' mode integration to make imp work. by Jeremy Hylton · 23 years ago
- 40b7703 Verify that the imp can find and load .py files. by Jeremy Hylton · 23 years ago
- 1e9abf0 Typo fixes. by Fred Drake · 23 years ago
- e4df27f Add the pymemcompat.h header as discussed on python-dev. by Michael W. Hudson · 23 years ago
- 5c16468 Holger Krekel. by Guido van Rossum · 23 years ago
- 84271bb SF #558432: Prevent Annoying ' ' from readline (Holker Krekel). by Guido van Rossum · 23 years ago
- efbb67b Remove comment about inheritance, look one line up by Neal Norwitz · 23 years ago
- 1dbe6c0 Move statement out of comment block by Raymond Hettinger · 23 years ago
- ca948b4 Use floor division where appropriate. by Guido van Rossum · 23 years ago
- 127ee16 Minor cleanup: by Fred Drake · 23 years ago
- 187b1d8 Add OS/2 text by Andrew M. Kuchling · 23 years ago
- 8b6b491 The logreader object did not always refill the input buffer correctly by Neil Schemenauer · 23 years ago
- d7abe2a Various minor rewrites by Andrew M. Kuchling · 23 years ago
- 72b58e0 More additions by Andrew M. Kuchling · 23 years ago
- aef22fb Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were not updated after 2.2). by Raymond Hettinger · 23 years ago