summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Rip out a useless method that the superclass implements properly.Brett Cannon2009-04-011-19/+0
* An HTTPResponse is, by its nature, readable.Jeremy Hylton2009-04-011-0/+3
* Merged revisions 70930 via svnmerge fromR. David Murray2009-03-311-9/+4
* Merged revisions 70734,70775,70856,70874,70876-70877 via svnmergeR. David Murray2009-03-3129-67/+120
* fix TextIOWrapper.read() when the buffer is not readable #5628Benjamin Peterson2009-03-312-0/+8
* Merged revisions 70920,70922 via svnmerge fromTarek Ziadé2009-03-312-2/+4
* Merged revisions 70910 via svnmerge fromTarek Ziadé2009-03-313-2/+34
* Merged revisions 70886,70888-70892 via svnmerge fromTarek Ziadé2009-03-3113-58/+341
* Merged revisions 70879 via svnmerge fromHirokazu Yamamoto2009-03-311-4/+16
* Merged revisions 70779 via svnmerge fromR. David Murray2009-03-311-0/+1
* Per the language summit, the optional fastpath imports should use from-import...Raymond Hettinger2009-03-311-1/+1
* Make urllib use HTTP/1.1. It seems to work now, but hasn't beenJeremy Hylton2009-03-311-4/+0
* Merged revisions 70801,70809 via svnmerge fromJeremy Hylton2009-03-313-2/+29
* Simplify the Request class. The basic components of the parsedJeremy Hylton2009-03-314-125/+138
* Merged revisions 70800 via svnmerge fromHirokazu Yamamoto2009-03-311-0/+17
* Fix segfaults when running test_exceptions with coverage tracing, caused by w...Georg Brandl2009-03-311-0/+6
* The message for the exception when time.strptime was passed something otherBrett Cannon2009-03-311-1/+1
* merge 70792 to py3kJesse Noller2009-03-311-1/+1
* merge 70783 to py3kJesse Noller2009-03-311-0/+4
* Add new copydir_run_2to3() function, for use e.g. in test runners to transpar...Georg Brandl2009-03-311-0/+33
* Merged revisions 70778 via svnmerge fromRonald Oussoren2009-03-301-2/+4
* "Port" the fix for issue 1974 from the trunk (2.7). Because Python 3.x does ...Barry Warsaw2009-03-304-83/+6
* finalize the queue to resolve test issueJesse Noller2009-03-301-0/+2
* Issue #5604: non-ASCII characters in module name passed toGuido van Rossum2009-03-301-0/+71
* Fix for Issue4962, issue4675.Senthil Kumaran2009-03-303-2/+21
* Make sure time.strptime only accepts strings (and document the fact likeBrett Cannon2009-03-302-1/+13
* Fix importlib.machinery.PathFinder.find_module() to essentially skip over NoneBrett Cannon2009-03-302-3/+23
* Merge 70717 to 30maintJesse Noller2009-03-302-0/+25
* Add simple tests for __import__ for future optimizations to importlib.Brett Cannon2009-03-301-0/+82
* Merged revisions 70656,70668-70669,70671,70701,70703,70706 via svnmerge fromBenjamin Peterson2009-03-302-2/+3
* Merged revisions 70578,70599,70641-70642,70650,70660-70661,70674,70691,70697-...Benjamin Peterson2009-03-304-63/+2
* Fix test_subprocess so that it works when launched from another directory thanAntoine Pitrou2009-03-291-2/+3
* Make life easier for non-CPython implementationsRaymond Hettinger2009-03-291-1/+1
* Plug another leak, and finally add a test for #1174606 (read() from /dev/zero).Antoine Pitrou2009-03-291-0/+16
* Issue #5463: Remove _PY_STRUCT_RANGE_CHECKING constant from structMark Dickinson2009-03-291-48/+26
* fix variable name #5595Benjamin Peterson2009-03-291-1/+1
* Port r70672 to py3k. Add the ability to control the random seed used by regrt...Collin Winter2009-03-291-5/+18
* Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-...Benjamin Peterson2009-03-2842-214/+358
* Remove special logic that closes HTTPConnection socket on EPIPE.Jeremy Hylton2009-03-282-36/+55
* Replace references to httplib with http.client.Jeremy Hylton2009-03-271-27/+27
* Fix some string encoding issues with entity bodies in HTTP requests.Jeremy Hylton2009-03-272-11/+92
* Fix compatibility issue with HTTPMessage class.Jeremy Hylton2009-03-272-4/+4
* Sort import list.Jeremy Hylton2009-03-271-10/+10
* Replace duplicate code in http.server with call to http.client.parse_headers().Jeremy Hylton2009-03-272-17/+2
* Simplify complex expression.Jeremy Hylton2009-03-261-1/+3
* Merged revisions 70518,70521,70590,70594-70595 via svnmerge fromBenjamin Peterson2009-03-263-63/+72
* Add __enter__ and __exit__ methods to addbase() so that it supports with.Jeremy Hylton2009-03-262-0/+50
* fix isprintable() on space characters #5126Benjamin Peterson2009-03-261-0/+1
* officially deprecated max_buffer_sizeBenjamin Peterson2009-03-262-9/+38
* Add a few more tests for urllib.parse.urlencode.Jeremy Hylton2009-03-261-2/+19