Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings ↵ | Ezio Melotti | 2011-04-27 | 1 | -0/+3 |
| | | | | are too long. | ||||
* | Update News entry for Issue11236 | Senthil Kumaran | 2011-04-26 | 1 | -0/+2 |
| | |||||
* | #6780: fix starts/endswith error message to mention that tuples are accepted ↵ | Ezio Melotti | 2011-04-26 | 1 | -0/+3 |
| | | | | too. | ||||
* | #11901: add description of how bitfields are laid out to hexversion docs | R David Murray | 2011-04-25 | 1 | -0/+1 |
| | | | | Patch by Sijin Joseph. | ||||
* | pybench prep_times calculation error (closes #11895) | Jesus Cea | 2011-04-25 | 1 | -0/+1 |
| | |||||
* | startswith and endswith don't accept None as slice index. Patch by Torsten ↵ | Jesus Cea | 2011-04-20 | 2 | -0/+4 |
| | | | | Becker. (closes #11828) | ||||
* | merge | Raymond Hettinger | 2011-04-19 | 1 | -0/+6 |
|\ | |||||
| * | Fix sporadic failure in test_startfile. | Nadeem Vawda | 2011-04-18 | 1 | -0/+2 |
| | | | | | | | | | | | | Wait for the child process to terminate before ending the test, so that the regrtest cleanup code doesn't get an error when it tries to delete the temporary CWD. | ||||
| * | Issue #11768: The signal handler of the signal module only calls | Victor Stinner | 2011-04-18 | 1 | -0/+4 |
| | | | | | | | | | | Py_AddPendingCall() for the first signal to fix a deadlock on reentrant or parallel calls. PyErr_SetInterrupt() writes also into the wake up file. | ||||
* | | Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object. | Raymond Hettinger | 2011-04-19 | 1 | -0/+3 |
|/ | |||||
* | Fix minor subclassing issue with collections.Counter | Raymond Hettinger | 2011-04-15 | 1 | -0/+2 |
| | |||||
* | Issue #5057: fix a bug in the peepholer that led to non-portable pyc files ↵ | Ezio Melotti | 2011-04-15 | 1 | -1/+5 |
| | | | | between narrow and wide builds while optimizing BINARY_SUBSCR on non-BMP chars (e.g. "\U00012345"[0]). | ||||
* | Issue #11467: Fix urlparse behavior when handling urls which contains scheme ↵ | Senthil Kumaran | 2011-04-15 | 1 | -0/+3 |
| | | | | specific part only digits. | ||||
* | Fix Issue11474 - fix url2pathname() handling of '/C|/' on Windows | Senthil Kumaran | 2011-04-14 | 1 | -0/+3 |
| | |||||
* | #9233: Fix json to work properly even when _json is not available. | Ezio Melotti | 2011-04-13 | 1 | -2/+4 |
| | |||||
* | Merge updates | Senthil Kumaran | 2011-04-13 | 1 | -0/+3 |
|\ | |||||
| * | #10019: Fix regression relative to 2.6: add newlines if indent=0 | R David Murray | 2011-04-13 | 1 | -0/+3 |
| | | | | | | | | Patch by Amaury Forgeot d'Arc, updated by Sando Tosi. | ||||
* | | Update the News for the fix to Issue11703. | Senthil Kumaran | 2011-04-13 | 1 | -0/+3 |
|/ | |||||
* | make assigning to a bytes literal a syntax error (closes #11506) | Benjamin Peterson | 2011-04-12 | 1 | -0/+3 |
| | |||||
* | Correct leading spaces in my NEWS entry. | Brian Curtin | 2011-04-11 | 1 | -2/+2 |
| | |||||
* | Add NEWS item for #5162. | brian.curtin | 2011-04-11 | 1 | -0/+3 |
| | |||||
* | Issue9670: Back out changeset 378b40d71175; test fails on other platforms | Ned Deily | 2011-04-09 | 1 | -5/+0 |
| | | | | and on OS X with pydebug. | ||||
* | Issue #9670: Increase the default stack size for secondary threads on | Ned Deily | 2011-04-09 | 1 | -0/+5 |
| | | | | | | Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (Patch by Ronald Oussoren) | ||||
* | Issue #11719: Fix message about unexpected test_msilib skip. | Ross Lagerwall | 2011-04-09 | 1 | -0/+3 |
| | | | | Patch by Nadeem Vawda. | ||||
* | Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted | Victor Stinner | 2011-04-09 | 1 | -0/+4 |
| | | | | | (EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch written by Charles-Francois Natali. | ||||
* | Issue #10963: Ensure that subprocess.communicate() never raises EPIPE. | Ross Lagerwall | 2011-04-05 | 1 | -0/+2 |
| | |||||
* | Merge issue 11662. | Guido van Rossum | 2011-03-29 | 1 | -0/+3 |
|\ | |||||
| * | Issue 11662: Fix vulnerability in urllib/urllib2. | guido@google.com | 2011-03-29 | 1 | -0/+3 |
| | | | | | | | | (This version is a cleaned-up backport of a fix by Senthil Kumaran.) | ||||
* | | Closes #11696: Fix ID generation in msilib. | Martin v. Löwis | 2011-03-27 | 2 | -0/+3 |
| | | | | | | | | Patch by Mark Mc Mahon. | ||||
* | | Issue #9696: Fix exception incorrectly raised by xdrlib.Packer.pack_int when ↵ | Mark Dickinson | 2011-03-27 | 2 | -0/+4 |
| | | | | | | | | trying to pack a negative (in-range) integer. | ||||
* | | Fix misplaced Misc/NEWS entry. | Mark Dickinson | 2011-03-27 | 1 | -4/+4 |
| | | |||||
* | | Fix short file name generation in bdist_msi. | Martin v. Löwis | 2011-03-27 | 1 | -0/+2 |
| | | | | | | | | | | Patch by Christoph Gohlke. Closes #7639. | ||||
* | | check possible recursive _as_parameter_ to prevent segfault (closes #1838) | Benjamin Peterson | 2011-03-26 | 1 | -0/+3 |
| | | |||||
* | | Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459. | Ross Lagerwall | 2011-03-26 | 2 | -0/+4 |
| | | | | | | | | Patch by Ben Hayden. | ||||
* | | Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects. | Mark Dickinson | 2011-03-26 | 1 | -0/+4 |
|/ | |||||
* | Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file | Victor Stinner | 2011-03-21 | 1 | -0/+4 |
| | | | | | 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-20 | 1 | -6/+6 |
| | |||||
* | Issue #5537: Fix time2isoz() and time2netscape() functions of httplib.cookiejar | Victor Stinner | 2011-03-21 | 1 | -3/+6 |
| | | | | for expiration year greater than 2038 on 32-bit systems. | ||||
* | Issue #11459: A `bufsize` value of 0 in subprocess.Popen() really creates | Antoine Pitrou | 2011-03-19 | 1 | -0/+3 |
| | | | | unbuffered pipes, such that select() works properly on them. | ||||
* | Issue #5421: Fix misleading error message when one of socket.sendto()'s | Antoine Pitrou | 2011-03-17 | 2 | -0/+4 |
| | | | | arguments has the wrong type. Patch by Nikita Vetoshkin. | ||||
* | #11401: handle headers with no value. | R David Murray | 2011-03-16 | 1 | -0/+3 |
| | |||||
* | #9298: restore proper folding of base64 encoded bodies. | R David Murray | 2011-03-16 | 2 | -0/+5 |
| | | | | Patch by Yves Dorfsman. | ||||
* | Issue #11569: use absolute path to the sysctl command in multiprocessing to | Ronald Oussoren | 2011-03-16 | 2 | -0/+5 |
| | | | | | ensure that it will be found regardless of the shell PATH. This ensures that multiprocessing.cpu_count works on default installs of MacOSX. | ||||
* | On behalf of Tarek: Issue #11501: disutils.archive_utils.make_zipfile no | Antoine Pitrou | 2011-03-15 | 2 | -0/+5 |
| | | | | | longer fails if zlib is not installed. Instead, the zipfile.ZIP_STORED compression is used to create the ZipFile. Patch by Natalia B. Bidart. | ||||
* | #11515: fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-15 | 1 | -0/+1 |
| | |||||
* | Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified ↵ | Ronald Oussoren | 2011-03-14 | 1 | -0/+3 |
| | | | | | | IP addresses in the proxy exception list Patch by Scott Wilson. | ||||
* | Fix #11491. When dbm.open was called with a file which already exists and | briancurtin | 2011-03-14 | 2 | -0/+5 |
| | | | | | | the "flag" argument is "n", dbm.error was being raised. As documented, dbm.open(...,flag='n') will now "Always create a new, empty database, open for reading and writing", regardless of a previous file existing. | ||||
* | Fixes #1099: Mac compile fails with pydebug and framework enabled | Ronald Oussoren | 2011-03-14 | 1 | -0/+3 |
| | | | | Without this patch "./configure --with-pydebug --enable-framework CC=gcc-4.0" fails on MacOSX | ||||
* | #11488: Add tests for writelines method of SpooledTemporaryFile. | R David Murray | 2011-03-14 | 1 | -0/+1 |
| | | | | Patch by Evan Dandrea. | ||||
* | #11490: EACCES can also mean command not found | R David Murray | 2011-03-14 | 1 | -0/+3 |
| |