summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Merged revisions 67427,67431,67433,67435,67630,67652,67656-67657,67674-67675,...Benjamin Peterson2008-12-1620-153/+329
* #3954: Fix error handling code in _hotshot.logreaderAmaury Forgeot d'Arc2008-12-151-0/+6
* Issue #4197: Fix the remaining part of the doctest-in-zipfile problem by givi...Nick Coghlan2008-12-152-3/+42
* #4578: fix has_key() usage in compiler package.Georg Brandl2008-12-155-18/+16
* modify other occurrence of test_bad_addressAntoine Pitrou2008-12-151-1/+1
* try to fix failure in test_bad_address on some buildbotsAntoine Pitrou2008-12-141-1/+1
* Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.).Antoine Pitrou2008-12-142-56/+85
* Add file that was missed from r67750Nick Coghlan2008-12-141-0/+203
* Fix several issues relating to access to source code inside zipfiles. Initial...Nick Coghlan2008-12-148-48/+111
* remove has_key usageBenjamin Peterson2008-12-141-1/+1
* Issue #4163: Use unicode-friendly word splitting in the textwrap functions wh...Antoine Pitrou2008-12-132-7/+17
* Issue #4616: TarFile.utime(): Restore directory times on Windows.Lars Gustäbel2008-12-122-10/+3
* Issue #4084: Fix max, min, max_mag and min_mag Decimal methods toFacundo Batista2008-12-112-16/+33
* #1030250: correctly pass the dry_run option to the mkpath() function.Amaury Forgeot d'Arc2008-12-111-1/+1
* #4559: When a context manager's __exit__() method returns an object whoseAmaury Forgeot d'Arc2008-12-101-0/+30
* Add simple unittests for RequestJeremy Hylton2008-12-091-1/+47
* Issue 4597: Fix several cases in EvalFrameEx where an exception could beJeffrey Yasskin2008-12-081-0/+14
* Issue #4509: bugs in bytearray with exports (buffer protocol)Antoine Pitrou2008-12-061-0/+32
* Issue #4445: save 3 bytes (on average, on a typical machine) perMark Dickinson2008-12-051-2/+2
* #4529: fix parser's validation for try-except-finally statements.Georg Brandl2008-12-051-0/+10
* #4544: add `dedent` to textwrap.__all__.Georg Brandl2008-12-051-1/+1
* #4458: recognize "-" as an argument, not a malformed option in gnu_getopt().Georg Brandl2008-12-052-1/+6
* rename the new check_call_output to check_output. its less ugly.Gregory P. Smith2008-12-052-22/+22
* Took Nick Coghlan's advice about importing warnings globally in logging, to a...Vinay Sajip2008-12-041-3/+1
* Adds a subprocess.check_call_output() function to return the output from aGregory P. Smith2008-12-042-12/+94
* Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters toFred Drake2008-12-042-3/+41
* Issue #4384: Added logging integration with warnings module using captureWarn...Vinay Sajip2008-12-032-4/+86
* Backport r67478Raymond Hettinger2008-12-031-0/+2
* Send HTTP headers and message body in a single send() call.Jeremy Hylton2008-11-292-27/+46
* Reflow long lines.Jeremy Hylton2008-11-291-5/+10
* Merged revisions 67384,67386-67387,67389-67390,67392,67399-67400,67403-67405,...Benjamin Peterson2008-11-2815-86/+104
* issue4238: bsd support for cpu_countJesse Noller2008-11-281-1/+1
* Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an...Christian Heimes2008-11-281-1/+1
* Merged revisions 67183,67191,67371 via svnmerge fromBenjamin Peterson2008-11-253-10/+32
* Add unittests that verify documented behavior of public methods in TransportJeremy Hylton2008-11-241-1/+86
* #4396 make the parser module correctly validate the with syntaxBenjamin Peterson2008-11-241-0/+4
* raise a better errorBenjamin Peterson2008-11-231-1/+1
* Fix typo.Georg Brandl2008-11-221-1/+1
* backport r67325: make FileIO.mode always contain 'b'Benjamin Peterson2008-11-222-9/+9
* don't segfault when \N escapes are used and unicodedata fails to loadBenjamin Peterson2008-11-211-2/+25
* #4363: Let uuid.uuid1() and uuid.uuid4() run even if the ctypes module is not...Amaury Forgeot d'Arc2008-11-211-2/+2
* Fixed issue #4233.Amaury Forgeot d'Arc2008-11-201-0/+24
* backport r67300Benjamin Peterson2008-11-202-9/+47
* oops! didn't mean to disable that testBenjamin Peterson2008-11-201-1/+1
* make sure that bytearray methods return a new bytearray even if there is no c...Benjamin Peterson2008-11-191-0/+10
* Fix for issue 4332 in trunk.Josiah Carlson2008-11-191-1/+1
* Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__Martin v. Löwis2008-11-191-2/+2
* patch from issue 1108Skip Montanaro2008-11-191-2/+2
* #4317: Fix an Array Bounds Read in imageop.rgb2rgb8.Amaury Forgeot d'Arc2008-11-181-1/+2
* when __getattr__ is a descriptor, call it correctly; fixes #4230Benjamin Peterson2008-11-171-0/+40