summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* SF 1098985: set objects cannot be marshalledRaymond Hettinger2005-01-111-0/+12
* Replace python-coded validation of csv dialect with a call to the CAndrew McNamara2005-01-112-44/+7
* No longer attempt to instantiate python classes describing dialects. ThisAndrew McNamara2005-01-111-18/+0
* Allow dialect-describing keywords to be supplied to register_dialect,Andrew McNamara2005-01-111-1/+10
* Whitespace normalization.Tim Peters2005-01-101-3/+3
* Fix and test for SF bug #1098990: codec readline() splits lines apart.Walter Dörwald2005-01-102-2/+32
* Bug #489256: remove out of date and out of place profile.doc, and letJohannes Gijsbers2005-01-102-715/+3
* Fix parsing of csv files with escapes (escape character previously would beAndrew McNamara2005-01-101-2/+2
* Patch #712317: In URLs such as http://www.example.com?query=spam, treat '?' asJohannes Gijsbers2005-01-092-41/+63
* Patch #1095362: replace hardcoded test for POST/GET with call to get_method,Johannes Gijsbers2005-01-091-1/+1
* Move code in __name__ == '__main__' block into main() function, rewrite code soJohannes Gijsbers2005-01-091-16/+14
* Patch #936774: unify the display of data descriptors, including slots,Johannes Gijsbers2005-01-081-37/+27
* Replace rfc822.parseaddr with email.Utils.parseaddr. The implementation isJohannes Gijsbers2005-01-081-2/+2
* Patch #1079734: remove dependencies on (deprecated) rfc822 and mimetoolsJohannes Gijsbers2005-01-081-7/+9
* Clean up tests by reusing functions from other modules:Johannes Gijsbers2005-01-081-31/+8
* Patch #943206:Johannes Gijsbers2005-01-082-23/+43
* Patch #1094015:Johannes Gijsbers2005-01-081-1/+2
* threading._DummyThread.__init__(): document obscure new code.Tim Peters2005-01-082-4/+31
* Converted to a unittest. Added checks that the bounded semaphore actuallyTim Peters2005-01-081-37/+73
* In _DummyThread objects the lock stored in __block (allocated thanks toBrett Cannon2005-01-081-0/+1
* Remove test for BINARY_DIVIDE.Raymond Hettinger2005-01-071-1/+0
* Whitespace normalization.Tim Peters2005-01-076-37/+36
* Allow relative URLs for included databases and packages.Jack Jansen2005-01-071-4/+7
* SF #75103: imghdr -- identify JPEGs in EXIF formatRaymond Hettinger2005-01-071-0/+7
* Improved the implementation of the internal "dialect" type. The newAndrew McNamara2005-01-072-25/+100
* add a couple missing docstringsSkip Montanaro2005-01-051-0/+9
* - Added an "installer" flavor, which uses the "open" command to installJack Jansen2005-01-031-7/+43
* Removed unused line.Raymond Hettinger2005-01-031-1/+0
* Removed unused line.Raymond Hettinger2005-01-031-1/+0
* Teach the peephole optimizer to fold simple constant expressions.Raymond Hettinger2005-01-021-0/+28
* On UNIX, when the execution of the child fails, we must waitpid() toPeter Astrand2005-01-011-0/+1
* New subprocess utility function: check_call. Closes #1071764.Peter Astrand2005-01-012-1/+55
* SF patch #1094007: Remove witty comment in pydoc.pyRaymond Hettinger2005-01-011-2/+1
* SF patch #1051395: locale.getdefaultlocale does not return tuple in some OSRaymond Hettinger2005-01-011-1/+1
* Remove some lambdas.Raymond Hettinger2004-12-311-3/+4
* Use cStringIO where available.Raymond Hettinger2004-12-318-19/+55
* Add a test that checks the basic functionality of every encoding.Walter Dörwald2004-12-291-1/+179
* Fix wrong variable name.Walter Dörwald2004-12-291-1/+1
* Fix wrong variable name.Walter Dörwald2004-12-291-1/+1
* - getDefaultDatabase wasn't listed in __all__.Jack Jansen2004-12-281-2/+2
* [Bug #1083110] calling .flush() on decompress objects causes a segfault due t...Andrew M. Kuchling2004-12-281-0/+10
* Fix for #1091468: DESTROOTed frameworkinstalls fail. Added a --destrootJack Jansen2004-12-272-7/+13
* After discussion on the PythonMac-SIG it was decided that it is betterJack Jansen2004-12-261-2/+4
* Dima Dorfman's patch for coercion/comparison of C types (patch #995939), withArmin Rigo2004-12-231-0/+36
* Improve error message if rpc'l localcall() fails with unexpectedKurt B. Kaiser2004-12-231-1/+3
* The GUI was hanging if the shell window was closed while a raw_input()Kurt B. Kaiser2004-12-232-6/+16
* Recompiled after source changes.Thomas Heller2004-12-222-0/+0
* Two small changes, SF bug #974757 and SF patch #1037974.Jeremy Hylton2004-12-221-6/+8
* SF patch #1055159 via Titus Brown: Document redirect limitation.Jeremy Hylton2004-12-221-0/+2
* add __file__ to the globals available for tests loaded via DocFileSuite;Fred Drake2004-12-213-0/+17