| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Always print out the traceback when a test "crashed" | Antoine Pitrou | 2011-03-21 | 1 | -5/+2 |
| | | |||||
| * | Try to make test_import a bit more robust | Antoine Pitrou | 2011-03-21 | 1 | -0/+3 |
| | | |||||
| * | Relax timing check (seen a buildbot failure on this) | Antoine Pitrou | 2011-03-21 | 1 | -1/+1 |
| | | |||||
| * | Merge to 3.2. | Georg Brandl | 2011-03-21 | 1 | -1/+1 |
| |\ | |||||
| | * | Fix duplicate word. | Georg Brandl | 2011-03-21 | 1 | -1/+1 |
| | | | |||||
| * | | merge 3.1 (already commited before) | Victor Stinner | 2011-03-21 | 0 | -0/+0 |
| |\ \ | |/ | |||||
| | * | Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file | Victor Stinner | 2011-03-21 | 3 | -1/+33 |
| | | | | | | | | | | | doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int (length bigger than 2^31-1 bytes). | ||||
| * | | Fix some issue references in NEWS | Éric Araujo | 2011-03-21 | 1 | -5/+5 |
| |\ \ | |/ | |||||
| | * | Fix some issue references in NEWS | Éric Araujo | 2011-03-20 | 1 | -6/+6 |
| | | | |||||
| * | | merge 3.1 | Victor Stinner | 2011-03-21 | 2 | -6/+15 |
| |\ \ | |/ | |||||
| | * | Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar | Victor Stinner | 2011-03-21 | 2 | -9/+18 |
| | | | | | | | | | for expiration year greater than 2038 on 32-bit systems. | ||||
| * | | time.strftime(): replace PyErr_Format() by PyErr_SetString() | Victor Stinner | 2011-03-21 | 1 | -3/+2 |
| | | | | | | | | | The argument was not used in the format string. | ||||
| * | | Issue #10864 has been fixed: remove the workaround | Victor Stinner | 2011-03-21 | 1 | -6/+2 |
| | | | |||||
| * | | Merge | Antoine Pitrou | 2011-03-20 | 5 | -3/+35 |
| |\ \ | |||||
| | * | | Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on | Victor Stinner | 2011-03-20 | 3 | -1/+33 |
| | | | | | | | | | | | | | | | | | | | | | | Windows if the file is a TTY to workaround a Windows bug. The Windows console returns an error (12: not enough space error) on writing into stdout if stdout mode is binary and the length is greater than 66,000 bytes (or less, depending on heap usage). | ||||
| | * | | Fix #11586: typo in initfsencoding() | Victor Stinner | 2011-03-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | Patch written by Ray Allen. | ||||
| | * | | Merge from 3.1 | Éric Araujo | 2011-03-20 | 1 | -1/+1 |
| | |\ \ | | |/ | |||||
| | | * | Fix typo in class name | Éric Araujo | 2011-03-20 | 1 | -1/+1 |
| | | | | |||||
| * | | | Try to strengthen test_httpservers (issue #11617) | Antoine Pitrou | 2011-03-20 | 1 | -4/+4 |
| |/ / | |||||
| * | | Merge | Antoine Pitrou | 2011-03-20 | 2 | -5/+11 |
| |\ \ | |/ | |||||
| | * | Call reap_children() where appropriate | Antoine Pitrou | 2011-03-20 | 2 | -5/+11 |
| | | | |||||
| * | | Merge markup fixes for #7198 patch. | R David Murray | 2011-03-20 | 1 | -3/+3 |
| |\ \ | |/ | |||||
| | * | Markup fixes for #7198 patch. | R David Murray | 2011-03-20 | 1 | -3/+3 |
| | | | |||||
| * | | Really merge #7198 | R David Murray | 2011-03-20 | 1 | -10/+11 |
| |\ \ | |/ | | | | | | | | | Changeset ab27f16f707a was messed up by a rebase (as were 959f666470cc and 9d1b1a95bc8f) and the patch only got applied to default. | ||||
| | * | #7198: really add newline='' to csv.writer docs. | R David Murray | 2011-03-20 | 1 | -10/+11 |
| | | | | | | | | | | | | | Changeset ab27f16f707a was messed up by a rebase (as were 959f666470cc and 9d1b1a95bc8f) and the patch only got applied to default. | ||||
| * | | Save a copy of sys.warnoptions in test_program. | Ezio Melotti | 2011-03-20 | 1 | -1/+1 |
| | | | |||||
| * | | Add a check for sys.warnoptions in regrtest. | Ezio Melotti | 2011-03-20 | 1 | -1/+8 |
| | | | |||||
| * | | Merge from 3.1 | Senthil Kumaran | 2011-03-20 | 1 | -4/+3 |
| |\ \ | |/ | |||||
| | * | Issue #11567 - Let's have the DOCTYPE as HTML instead of XHTML. | Senthil Kumaran | 2011-03-20 | 1 | -4/+3 |
| | | | |||||
| * | | Add NEWS for Issue #11563. | Senthil Kumaran | 2011-03-20 | 1 | -0/+4 |
| | | | |||||
| * | | branch merge 3.2 | Senthil Kumaran | 2011-03-19 | 6 | -5/+24 |
| |\ \ | |||||
| | * \ | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 6 | -5/+24 |
| | |\ \ | | |/ | | | | | | | unbuffered pipes, such that select() works properly on them. | ||||
| | | * | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 6 | -5/+23 |
| | | | | | | | | | | | | | unbuffered pipes, such that select() works properly on them. | ||||
| * | | | Call unfakehttp in order to close connection while opening the connection ↵ | Senthil Kumaran | 2011-03-19 | 1 | -2/+5 |
| |/ / | | | | | | | | | | | through a fakehttp object. Address issue11609 - urllib related buildbots failure. | ||||
| * | | Merging it again. | Senthil Kumaran | 2011-03-19 | 2 | -1/+12 |
| |\ \ | |||||
| | * | | Closes issue11563 - test_urllibnet ResourceWarning. Patch by Jeff McNeil. | Senthil Kumaran | 2011-03-19 | 2 | -1/+12 |
| | | | | |||||
| * | | | Issue 7391: Remove questionable and outdated HOWTO document with permission ↵ | Raymond Hettinger | 2011-03-19 | 2 | -291/+0 |
| |/ / | | | | | | | from its author. | ||||
| * | | Oops, wrong issue number in NEWS | Antoine Pitrou | 2011-03-17 | 1 | -1/+1 |
| | | | |||||
| * | | Add news entry for a791dd7d51f3 | Antoine Pitrou | 2011-03-17 | 1 | -0/+3 |
| | | | |||||
| * | | Issue #10914: fix bogus memory management in Modules/getpath.c, leading to a ↵ | Antoine Pitrou | 2011-03-17 | 1 | -3/+7 |
| | | | | | | | | | possible crash when calling Py_SetPath() | ||||
| * | | Issue #5421: merge fix | Antoine Pitrou | 2011-03-17 | 2 | -6/+19 |
| |\ \ | |/ | |||||
| | * | Issue #5421: Fix misleading error message when one of socket.sendto()'s | Antoine Pitrou | 2011-03-17 | 3 | -6/+21 |
| | | | | | | | | | arguments has the wrong type. Patch by Nikita Vetoshkin. | ||||
| * | | Move NEWS entry to correct place | Michael Foord | 2011-03-17 | 1 | -3/+4 |
| | | | |||||
| * | | Issue #10979. unittest stdout buffering now works with class and module ↵ | Michael Foord | 2011-03-17 | 4 | -2/+94 |
| | | | | | | | | | setup and teardown. | ||||
| * | | Recording the merge. | Senthil Kumaran | 2011-03-17 | 0 | -0/+0 |
| |\ \ | |/ | |||||
| | * | Error message in http.server code. Missed to update in 3.1 branch initially. | Senthil Kumaran | 2011-03-17 | 1 | -9/+14 |
| | | | |||||
| * | | Fix issue11567: http.server DEFAULT_ERROR_MESSAGE format. Patch by Gennadiy ↵ | Senthil Kumaran | 2011-03-17 | 1 | -9/+14 |
| | | | | | | | | | Zlobin. | ||||
| * | | Merge from remote | Nick Coghlan | 2011-03-17 | 3 | -5/+63 |
| |\ \ | |||||
| | * | | #11243: tests and fixes for handling of 'dirty data' in additional methods | R David Murray | 2011-03-17 | 3 | -5/+63 |
| | | | | |||||
| * | | | Close #11577: Improve binhex test coverage and fix ResourceWarning | Nick Coghlan | 2011-03-17 | 4 | -18/+40 |
| |/ / | |||||
