summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5,Ned Deily2011-01-152-0/+24
* cgi: use isinstance(x, list) instead of type(x) == type([])Victor Stinner2011-01-141-3/+3
* Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, notVictor Stinner2011-01-142-79/+186
* test_urlparse: add tests for encoding and errors argumentsVictor Stinner2011-01-141-0/+27
* Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl()Victor Stinner2011-01-141-5/+19
* Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-132-18/+24
* Issue #10899: Move function type annotations into docstrings.Raymond Hettinger2011-01-131-30/+36
* More PEP 8: no space around "=" in argument lists.Georg Brandl2011-01-131-11/+10
* Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-131-1/+1
* Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-132-15/+15
* Issue #10899: No function type annotations in the standard library.Raymond Hettinger2011-01-121-31/+31
* Fix test_bigaddrspace (some tests didn't trigger the expected MemoryError)Antoine Pitrou2011-01-121-25/+43
* A better message againAntoine Pitrou2011-01-121-1/+1
* More informative skip message in @bigaddrspaceAntoine Pitrou2011-01-121-3/+7
* Fix @bigmemtest when no limit is given by the user (oops)Antoine Pitrou2011-01-121-1/+1
* Make test skipping message nicer, and remove the rather useless "overhead" pa...Antoine Pitrou2011-01-121-20/+10
* Remove the funky function annotation from numbers.py.Raymond Hettinger2011-01-121-1/+1
* Fix the expected memory use of utf-8 encoding. Also, release theAntoine Pitrou2011-01-121-3/+7
* Remove function annotations that slipped into _abcoll.Raymond Hettinger2011-01-121-4/+4
* Issue #10822: Fix test_posix:test_getgroups failure under Solaris. PatchAntoine Pitrou2011-01-121-1/+4
* don't segfault on deleting __abstractmethods__ #10892Benjamin Peterson2011-01-121-1/+5
* oops, wrong classBenjamin Peterson2011-01-121-7/+7
* move this test to test_descr; it's not abc specificBenjamin Peterson2011-01-122-7/+7
* Issue 10889: Support slicing and indexing of large ranges (no docs changes, s...Nick Coghlan2011-01-121-7/+86
* Add comment.Raymond Hettinger2011-01-111-1/+1
* Issue #5109: array.array constructor will now use fast code whenAlexander Belopolsky2011-01-111-0/+10
* Add entry for Barrier objects.Raymond Hettinger2011-01-111-3/+2
* Typo.Eric Smith2011-01-111-1/+1
* Issue 10556: test_zipimport_support implicitly imports too many modules (incl...Nick Coghlan2011-01-112-6/+23
* This should fix mktime test on WindowsAlexander Belopolsky2011-01-111-1/+2
* Make mktime test more robust.Alexander Belopolsky2011-01-111-3/+7
* Issue #1726687: time.mktime() will now correctly compute value oneAlexander Belopolsky2011-01-111-0/+13
* Issue #10872: The repr() of TextIOWrapper objects now includes the modeAntoine Pitrou2011-01-092-4/+14
* #10874: test_urllib2 shouldn't use `is` operator for comparing stringsƁukasz Langa2011-01-091-1/+1
* Add missing line.Georg Brandl2011-01-091-0/+1
* #10869: do not visit root node twice in ast.increment_lineno().Georg Brandl2011-01-092-5/+10
* #5871: protect against header injection attacks.R. David Murray2011-01-092-1/+21
* Add EHOSTUNREACH ('No route to host') to the errnos trapped by transient_inte...Antoine Pitrou2011-01-081-0/+1
* Fix test_ssl after r87849Antoine Pitrou2011-01-082-32/+128
* Issue #10859: Make `contextlib.GeneratorContextManager` officiallyAntoine Pitrou2011-01-082-8/+8
* Issue #10042: Fixed the total_ordering decorator to handle cross-typeRaymond Hettinger2011-01-082-8/+32
* test_ssl: test SHA256 using sha256.tbs-internet.com instead of sha2.hboeck.deVictor Stinner2011-01-081-2/+2
* Issue #1777412: Remove all limits on tm_year from time.strftime()Victor Stinner2011-01-081-17/+19
* Issue #1777412: fix test_time for Mac OS X and OpenIndianaVictor Stinner2011-01-081-9/+14
* Issue #1777412: test large years value for strftime('%Y')Victor Stinner2011-01-081-5/+10
* Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900Victor Stinner2011-01-081-30/+70
* Fixed error handling branches. ThanksAlexander Belopolsky2011-01-081-1/+12
* Issue #1777412: extended year range of strftime down to 1000.Alexander Belopolsky2011-01-082-7/+7
* #10686: recode non-ASCII headers to 'unknown-8bit' instead of ?s.R. David Murray2011-01-074-55/+89
* Fix formatting of values with embedded newlines when rfc2047 encodingR. David Murray2011-01-072-3/+21