Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #11004: Repair edge case in deque.count(). | Raymond Hettinger | 2011-01-25 | 1 | -0/+9 |
| | | | | | | | | | (Reviewed by Georg Brandl.) Also made similar changes to deque.reverse() though this wasn't strictly necessary (the edge case cannot occur with two pointers moving to meet in the middle). Making the change in reverse() was more a matter of future-proofing. | ||||
* | Tighten the restrictions on the test_sys test which triggers a fatal error when | Brett Cannon | 2011-01-25 | 1 | -2/+2 |
| | | | | run with tracing turned on. | ||||
* | another pretty crasher served up by pypy | Benjamin Peterson | 2011-01-25 | 1 | -0/+20 |
| | |||||
* | Issue #9509: make argarse properly handle IOErrors raised by ↵ | Steven Bethard | 2011-01-24 | 1 | -9/+15 |
| | | | | argparse.FileType. Approved by Georg in the tracker. | ||||
* | Make the type consistent for hashlib algorithm constants. (Reviewed by ↵ | Raymond Hettinger | 2011-01-24 | 1 | -1/+1 |
| | | | | Benjamin). | ||||
* | Skip a recursion depth check test when running under CPython and have a trace | Brett Cannon | 2011-01-23 | 1 | -0/+2 |
| | | | | | | | function set. Otherwise a Python fatal error about hitting an unrecoverable recursion depth gets triggered. Closes issue #10985. Code review by Georg Brandl. | ||||
* | To match the behaviour of HTTP server, the HTTP client library now also encodes | Armin Ronacher | 2011-01-22 | 1 | -1/+7 |
| | | | | | | headers with iso-8859-1 (latin1) encoding. It was already doing that for incoming headers which makes this behaviour now consistent in both incoming and outgoing direction. | ||||
* | Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server. | Armin Ronacher | 2011-01-22 | 1 | -0/+10 |
| | | | | | This makes the implementation of PEP 3333 compliant servers on top of BaseHTTPServer possible. | ||||
* | Issue #10955: Fix a potential crash when trying to mmap() a file past its | Antoine Pitrou | 2011-01-20 | 1 | -0/+13 |
| | | | | | | length. Initial patch by Ross Lagerwall. This fixes a regression introduced by r88022. | ||||
* | Issue #10451: memoryview objects could allow to mutate a readable buffer. | Antoine Pitrou | 2011-01-18 | 2 | -1/+15 |
| | | | | Initial patch by Ross Lagerwall. | ||||
* | Fix mmap and test_mmap under Windows too (followup to r88022)v3.2rc1 | Antoine Pitrou | 2011-01-15 | 1 | -5/+6 |
| | |||||
* | Issue #10916: mmap should not segfault when a file is mapped using 0 as | Antoine Pitrou | 2011-01-15 | 1 | -0/+13 |
| | | | | | | | length and a non-zero offset, and an attempt to read past the end of file is made (IndexError is raised instead). Patch by Ross Lagerwall. Requested by Georg. | ||||
* | Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not | Victor Stinner | 2011-01-14 | 1 | -16/+17 |
| | | | | | as unicode, and accept binary files. Add encoding and errors attributes to cgi.FieldStorage. | ||||
* | test_urlparse: add tests for encoding and errors arguments | Victor Stinner | 2011-01-14 | 1 | -0/+27 |
| | |||||
* | Fix test_bigaddrspace (some tests didn't trigger the expected MemoryError) | Antoine Pitrou | 2011-01-12 | 1 | -25/+43 |
| | |||||
* | A better message again | Antoine Pitrou | 2011-01-12 | 1 | -1/+1 |
| | |||||
* | More informative skip message in @bigaddrspace | Antoine Pitrou | 2011-01-12 | 1 | -3/+7 |
| | |||||
* | Fix @bigmemtest when no limit is given by the user (oops) | Antoine Pitrou | 2011-01-12 | 1 | -1/+1 |
| | |||||
* | Make test skipping message nicer, and remove the rather useless "overhead" ↵ | Antoine Pitrou | 2011-01-12 | 1 | -20/+10 |
| | | | | parameter. | ||||
* | Fix the expected memory use of utf-8 encoding. Also, release the | Antoine Pitrou | 2011-01-12 | 1 | -3/+7 |
| | | | | one reference to a huge object even when an exception is raised. | ||||
* | Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch | Antoine Pitrou | 2011-01-12 | 1 | -1/+4 |
| | | | | by Ross Lagerwall. | ||||
* | don't segfault on deleting __abstractmethods__ #10892 | Benjamin Peterson | 2011-01-12 | 1 | -1/+5 |
| | |||||
* | oops, wrong class | Benjamin Peterson | 2011-01-12 | 1 | -7/+7 |
| | |||||
* | move this test to test_descr; it's not abc specific | Benjamin Peterson | 2011-01-12 | 2 | -7/+7 |
| | |||||
* | Issue 10889: Support slicing and indexing of large ranges (no docs changes, ↵ | Nick Coghlan | 2011-01-12 | 1 | -7/+86 |
| | | | | since, as far as I know, we never said anywhere that this *didn't* work) | ||||
* | Issue #5109: array.array constructor will now use fast code when | Alexander Belopolsky | 2011-01-11 | 1 | -0/+10 |
| | | | | initial data is provided in an array object with correct type. | ||||
* | Typo. | Eric Smith | 2011-01-11 | 1 | -1/+1 |
| | |||||
* | Issue 10556: test_zipimport_support implicitly imports too many modules ↵ | Nick Coghlan | 2011-01-11 | 2 | -6/+23 |
| | | | | (including _ssl) to safely clobber sys.modules after each test | ||||
* | This should fix mktime test on Windows | Alexander Belopolsky | 2011-01-11 | 1 | -1/+2 |
| | |||||
* | Make mktime test more robust. | Alexander Belopolsky | 2011-01-11 | 1 | -3/+7 |
| | |||||
* | Issue #1726687: time.mktime() will now correctly compute value one | Alexander Belopolsky | 2011-01-11 | 1 | -0/+13 |
| | | | | | second before epoch. Original patch by Peter Wang, reported by Martin Blais. | ||||
* | Issue #10872: The repr() of TextIOWrapper objects now includes the mode | Antoine Pitrou | 2011-01-09 | 1 | -1/+4 |
| | | | | | | if available. (at Georg's request) | ||||
* | #10874: test_urllib2 shouldn't use `is` operator for comparing strings | Łukasz Langa | 2011-01-09 | 1 | -1/+1 |
| | | | | Patch by Adreas Stührk. | ||||
* | Add missing line. | Georg Brandl | 2011-01-09 | 1 | -0/+1 |
| | |||||
* | #10869: do not visit root node twice in ast.increment_lineno(). | Georg Brandl | 2011-01-09 | 1 | -0/+7 |
| | |||||
* | Add EHOSTUNREACH ('No route to host') to the errnos trapped by ↵ | Antoine Pitrou | 2011-01-08 | 1 | -0/+1 |
| | | | | transient_internet(). | ||||
* | Fix test_ssl after r87849 | Antoine Pitrou | 2011-01-08 | 2 | -32/+128 |
| | |||||
* | Issue #10859: Make `contextlib.GeneratorContextManager` officially | Antoine Pitrou | 2011-01-08 | 1 | -6/+6 |
| | | | | private by renaming it to `_GeneratorContextManager`. | ||||
* | Issue #10042: Fixed the total_ordering decorator to handle cross-type | Raymond Hettinger | 2011-01-08 | 1 | -0/+24 |
| | | | | comparisons that could lead to infinite recursion. | ||||
* | test_ssl: test SHA256 using sha256.tbs-internet.com instead of sha2.hboeck.de | Victor Stinner | 2011-01-08 | 1 | -2/+2 |
| | |||||
* | Issue #1777412: Remove all limits on tm_year from time.strftime() | Victor Stinner | 2011-01-08 | 1 | -17/+19 |
| | | | | The buildbots will tell us which platform does support or not negative years. | ||||
* | Issue #1777412: fix test_time for Mac OS X and OpenIndiana | Victor Stinner | 2011-01-08 | 1 | -9/+14 |
| | |||||
* | Issue #1777412: test large years value for strftime('%Y') | Victor Stinner | 2011-01-08 | 1 | -5/+10 |
| | |||||
* | Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 | Victor Stinner | 2011-01-08 | 1 | -30/+70 |
| | | | | | * With Visual Studio, year have to be in [1; 9999] * Add more tests on the year field | ||||
* | Fixed error handling branches. Thanks | Alexander Belopolsky | 2011-01-08 | 1 | -1/+12 |
| | | | | Victor Stinner for pointing this out. | ||||
* | Issue #1777412: extended year range of strftime down to 1000. | Alexander Belopolsky | 2011-01-08 | 1 | -3/+3 |
| | |||||
* | Issue #10827: Changed the rules for 2-digit years. The time.asctime | Alexander Belopolsky | 2011-01-07 | 1 | -26/+36 |
| | | | | | | | | function will now format any year when time.accept2dyear is false and will accept years >= 1000 otherwise. The year range accepted by time.mktime and time.strftime is still system dependent, but time.mktime will now accept full range supported by the OS. Conversion of 2-digit years to 4-digit is deprecated. | ||||
* | Get --coverage to be an acceptable flag for test.regrtest again. | Brett Cannon | 2011-01-06 | 1 | -2/+2 |
| | |||||
* | Further simplify gettmarg() | Alexander Belopolsky | 2011-01-06 | 1 | -0/+1 |
| | |||||
* | Issue #3839: wsgiref should not override a Content-Length header set by | Antoine Pitrou | 2011-01-06 | 1 | -4/+11 |
| | | | | the application. Initial patch by Clovis Fabricio. |