summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Use decorators.Guido van Rossum2005-01-162-11/+6
* Whitespace normalization.Tim Peters2005-01-132-8/+8
* Improved SysLogHandler error recovery (patch by Erik Forsberg)Vinay Sajip2005-01-131-9/+16
* Add strptime() constructor to datetime class. Thanks to Josh Spoerri forSkip Montanaro2005-01-131-0/+9
* Add counting of source iterator lines to the reader object - handy forAndrew McNamara2005-01-121-1/+13
* When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fieldsAndrew McNamara2005-01-121-0/+6
* Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test.Andrew McNamara2005-01-121-0/+2
* When using QUOTE_NONNUMERIC, we now test for "numericness" withAndrew McNamara2005-01-121-10/+20
* Rename csv.set_field_limit to csv.field_size_limit (since it both sets andAndrew McNamara2005-01-122-8/+8
* Improve test coverage fractionally.Andrew McNamara2005-01-121-9/+23
* Improve error handling when .idlerc can't be created.Kurt B. Kaiser2005-01-111-14/+16
* SF bug #1099516: tempfile files not types.FileTypeRaymond Hettinger2005-01-111-5/+5
* Set an upper limit on the size of the field buffer, raise an exceptionAndrew McNamara2005-01-112-2/+10
* 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