summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* urlencode:Jeremy Hylton2009-03-261-13/+5
* Simplify a few complicated expressions.Jeremy Hylton2009-03-261-7/+12
* Whitespace normalization.Jeremy Hylton2009-03-261-5/+6
* Fix a circular import dependency.Brett Cannon2009-03-251-2/+2
* Separate initialization from clearing.Raymond Hettinger2009-03-251-3/+4
* reuse tokenize.detect_encoding in linecache instead of a custom solutionBenjamin Peterson2009-03-242-23/+8
* http://bugs.python.org/issue5544Kristján Valur Jónsson2009-03-241-13/+100
* Merged revisions 70574 via svnmerge fromBenjamin Peterson2009-03-241-1/+1
* Merged revisions 70558,70561-70563,70568-70571 via svnmerge fromBenjamin Peterson2009-03-242-51/+60
* Merged revisions 70555 via svnmerge fromBenjamin Peterson2009-03-232-21/+313
* Merged revisions 70546 via svnmerge fromAntoine Pitrou2009-03-233-0/+190
* Make imported name private and wrap long-line.Raymond Hettinger2009-03-231-3/+4
* Forward port r70533 and r70538.Raymond Hettinger2009-03-231-32/+45
* Merged revisions 70523 via svnmerge fromLars Gustäbel2009-03-222-5/+29
* port the queue change r70405Benjamin Peterson2009-03-211-8/+8
* Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-...Benjamin Peterson2009-03-212-9/+13
* - Issue #5463: In struct module, remove deprecated overflow wrappingMark Dickinson2009-03-211-11/+1
* Document import's semantics for the language reference. This includes fillingBrett Cannon2009-03-211-7/+0
* stringio doesn't have an encodingBenjamin Peterson2009-03-212-1/+5
* Fix typoRaymond Hettinger2009-03-191-2/+2
* Forward port 70475: Add implementation notes. Put methods in more readable ...Raymond Hettinger2009-03-191-13/+25
* Forward port r70470 and r70473 for OrderedDict to use a doubly linked list.Raymond Hettinger2009-03-192-15/+34
* svnmerge from trunk for r70457 (sorry, I accidentally deleted the commit mess...Antoine Pitrou2009-03-181-1/+1
* Issue #4258: Make it possible to use 30-bit digits for PyLongs:Mark Dickinson2009-03-182-10/+44
* Merged revisions 70444 via svnmerge fromMark Dickinson2009-03-182-2/+23
* Merged revisions 70439 via svnmerge fromMark Dickinson2009-03-172-86/+295
* Merged revisions 70430 via svnmerge fromMark Dickinson2009-03-172-2/+8
* Implement InspectLoader for FrozenImporter.Brett Cannon2009-03-154-9/+65
* Implement InspectLoader for BuiltinImporter.Brett Cannon2009-03-156-22/+80
* A few more docstring/API cleanups for importlib.Brett Cannon2009-03-154-53/+55
* Clean up docstring from importlib.util.module_for_loader.Brett Cannon2009-03-151-8/+8
* Merged revisions 70364 via svnmerge fromEric Smith2009-03-141-3/+33
* Merged revisions 70356 via svnmerge fromAntoine Pitrou2009-03-142-33/+128
* Issue #5016: FileIO.seekable() could return False if the file positionAntoine Pitrou2009-03-131-0/+10
* The error detection code in FileIO.close() could fail to reflect the `errno` ...Antoine Pitrou2009-03-131-0/+15
* Issue #5392: when a very low recursion limit was set, the interpreter wouldAntoine Pitrou2009-03-131-0/+42
* Finish properly hiding importlib implementation code.Brett Cannon2009-03-1212-55/+43
* Last big re-organization of importlib._bootstrap. Should actually be able to ...Brett Cannon2009-03-121-172/+173