Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | normalize whitespace | Martin v. Löwis | 2012-07-09 | 1 | -1/+1 |
| | |||||
* | Issue #13532: Check that arguments to sys.stdout.write are strings. | Martin v. Löwis | 2012-07-09 | 3 | -3/+25 |
| | |||||
* | Issue 12510: Delete actual first param name for all methods; revise tests. | Terry Jan Reedy | 2012-07-09 | 1 | -14/+20 |
| | |||||
* | revert the changes done for issue14826 - quoting witin Request is not desirable. | Senthil Kumaran | 2012-07-09 | 3 | -11/+0 |
| | |||||
* | Issue #13557: Clarify effect of giving two different namespaces to exec or | Terry Jan Reedy | 2012-07-08 | 2 | -4/+7 |
| | | | | execfile(). | ||||
* | issue 14826 - Address the buildbot failure ( explanation msg164973) | Senthil Kumaran | 2012-07-08 | 2 | -3/+3 |
| | |||||
* | Fix issue14826 - make urllib.request.Request quoted url consistent with ↵ | Senthil Kumaran | 2012-07-08 | 3 | -1/+12 |
| | | | | | | URLOpener open method. Patch contributed by Stephen Thorne. | ||||
* | Issue #14990: tokenize: correctly fail with SyntaxError on invalid encoding ↵ | Florent Xicluna | 2012-07-07 | 3 | -1/+8 |
| | | | | declaration. | ||||
* | Issue #15247: FileIO now raises an error when given a file descriptor ↵ | Antoine Pitrou | 2012-07-06 | 3 | -12/+16 |
| | | | | pointing to a directory. | ||||
* | Issue #15020: The program name used to search for Python's path is now ↵ | Antoine Pitrou | 2012-07-05 | 2 | -0/+7 |
| | | | | "python3" under Unix, not "python". | ||||
* | Fix issue # 15033 - Return the proper exitcode for failure when modules are ↵ | Senthil Kumaran | 2012-07-05 | 3 | -1/+19 |
| | | | | invoked using -m switch. Patch contributed by Jeff Knupp | ||||
* | Issue #1677: Unused variable warning in Non-Windows | Jesus Cea | 2012-07-03 | 1 | -1/+4 |
| | |||||
* | Make call of os.getppid() conditional: it is not available on Windows. | Georg Brandl | 2012-07-01 | 1 | -1/+2 |
| | |||||
* | Fix inconsistent function name in embedding howto. | Georg Brandl | 2012-07-01 | 1 | -2/+2 |
| | |||||
* | Issue #15171: Quote the variable that expands to the current directory. | Stefan Krah | 2012-06-30 | 1 | -1/+1 |
| | |||||
* | Issue #9239: add tests for modifying zipfile comments in append mode. | Antoine Pitrou | 2012-06-30 | 1 | -0/+18 |
| | |||||
* | Merged | Tim Golden | 2012-06-29 | 1 | -22/+15 |
|\ | |||||
| * | Issue #1677: Handle better a race condition between the interactive ↵ | Tim Golden | 2012-06-29 | 1 | -22/+15 |
| | | | | | | | | | | | | interpreter and the Ctrl-C signal handler on Windows | ||||
* | | urllib.parse cleanup. rename keywords used as variables | Senthil Kumaran | 2012-06-29 | 1 | -7/+7 |
| | | |||||
* | | Better diagnose test failure | Antoine Pitrou | 2012-06-29 | 1 | -2/+2 |
|/ | |||||
* | #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush() | Petri Lehtinen | 2012-06-29 | 3 | -0/+23 |
| | |||||
* | #9559: Don't call _pre_mailbox_hook more than once | Petri Lehtinen | 2012-06-29 | 1 | -2/+5 |
| | |||||
* | urlparse docs clean up - no reference to earlier draft | Senthil Kumaran | 2012-06-29 | 1 | -5/+5 |
| | |||||
* | Issue #5067: improve some json error messages. | Antoine Pitrou | 2012-06-28 | 5 | -12/+14 |
| | | | | Patch by Serhiy Storchaka. | ||||
* | Issue #10571: Fix the "--sign" option of distutils' upload command. | Antoine Pitrou | 2012-06-28 | 3 | -1/+5 |
| | | | | Patch by Jakub Wilk. | ||||
* | #9559: Append data to single-file mailbox files if messages are only added | Petri Lehtinen | 2012-06-28 | 3 | -5/+46 |
| | | | | | | If messages were only added, a new file is no longer created and renamed over the old file when flush() is called on an mbox, MMDF or Babyl mailbox. | ||||
* | Flush stdout and stderr when running tests in parallel | Antoine Pitrou | 2012-06-27 | 1 | -0/+2 |
| | | | | (helps getting results in real-time when stdio is transmitted over a pipe or socket) | ||||
* | Allow passing extra testing options to the buildbot test scripts | Antoine Pitrou | 2012-06-27 | 2 | -3/+2 |
| | |||||
* | Issue #15079: make a test applicable to both C and Python versions of the ↵ | Antoine Pitrou | 2012-06-26 | 2 | -3/+6 |
| | | | | | | pickle module. Patch by Stefan Mihaila. | ||||
* | Issue #14443: ensure that brp-python-bytecompile is invoked with the correct | David Malcolm | 2012-06-26 | 2 | -1/+19 |
| | | | | | | | | | | | | | | | | | | | python executable The __os_install_macro defines some post-processing activities during an rpm build; one of the scripts it calls is brp-python-bytecompile, which can take an argument: the python executable with which to byte-compile .py files in the package payload. In some older versions of rpm (e.g. in RHEL 6), this invocation doesn't pass in an argument, and brp-python-bytecompile defaults to using /usr/bin/python, which can lead to the .py files being byte-compiled for the wrong version of python. This has been fixed in later versions of rpm by passing in %{__python} as an argument to brp-python-bytecompile. Workaround this by detecting if __os_install_post has a 0-argument invocation of brp-python-bytecompile, and if so generating an equivalent macro that has the argument, and explicitly provide the new definition within the specfile. | ||||
* | issue13666 - Fixing datetime documentation example when using tzinfo | Senthil Kumaran | 2012-06-26 | 1 | -10/+9 |
| | |||||
* | Issue #13685 - Update argparse help message for % sign usage. | Senthil Kumaran | 2012-06-26 | 1 | -0/+3 |
| | |||||
* | Issue #15179: Closed socket on connection failure. Thanks to Kazutaka Morita ↵ | Vinay Sajip | 2012-06-25 | 1 | -1/+5 |
| | | | | for the patch. | ||||
* | Backport test_nntplib fixes from default. | Antoine Pitrou | 2012-06-25 | 1 | -2/+5 |
| | |||||
* | Issue #15171: Try the HOST_PYTHON hack for 3.2. | Stefan Krah | 2012-06-25 | 1 | -0/+1 |
| | |||||
* | Backout change e8f44ebacda7052267318cecf5b6f128d35add17. Reverting the test | Gregory P. Smith | 2012-06-25 | 1 | -5/+5 |
| | | | | | | | | to using signal.alarm(1) instead of signal.setitimer(signal.ITIMER_REAL, 0.1). This is an attempt to see if this change is what caused the ubuntu arm buildbot to hang in test_io's test_interrupted_write_retry_text. Discussion in Issue #12268. | ||||
* | Fix a bunch of "versionchanged" related markup errors. | Georg Brandl | 2012-06-24 | 3 | -6/+5 |
| | |||||
* | Refer test_xmlrpc_net to the new buildbot URL at buildbot.python.org. | Georg Brandl | 2012-06-24 | 1 | -1/+1 |
| | |||||
* | Partial backport of 612f34e31270: fix spacing error in exception message. | Georg Brandl | 2012-06-24 | 1 | -2/+2 |
| | |||||
* | Fixes issue #12268: File readline, readlines and read() or readall() methods | Gregory P. Smith | 2012-06-24 | 7 | -8/+290 |
| | | | | | | no longer lose data when an underlying read system call is interrupted. IOError is no longer raised due to a read system call returning EINTR from within these methods. | ||||
* | Speed up test_io by >2x by reducing the sleep time using setitimer instead of | Gregory P. Smith | 2012-06-24 | 1 | -5/+5 |
| | | | | alarm for the signal tests. | ||||
* | The build target of this makefile is python3.dll, not python32.dll. | Martin v. Löwis | 2012-06-23 | 1 | -2/+2 |
| | |||||
* | Issue #15142: Fix reference leak when deallocating instances of types ↵ | Antoine Pitrou | 2012-06-23 | 2 | -0/+9 |
| | | | | created using PyType_FromSpec(). | ||||
* | Issue #12965: More PyLong_As* clarifications. Thanks Stefan Krah. | Mark Dickinson | 2012-06-23 | 1 | -22/+39 |
| | |||||
* | Issue #12965: Clean up C-API docs for PyLong_AsLongLong(AndOverflow); ↵ | Mark Dickinson | 2012-06-23 | 1 | -18/+23 |
| | | | | clarify that __int__ will be called for non-PyLongs | ||||
* | Issue #12965: Clean up C-API docs for PyLong_AsLong(AndOverflow); clarify ↵ | Mark Dickinson | 2012-06-23 | 1 | -13/+16 |
| | | | | that __int__ will be called for non-PyLongs | ||||
* | Remove useless test (flowinfo is unsigned). | Charles-François Natali | 2012-06-23 | 1 | -2/+2 |
| | |||||
* | Issue #14653: email.utils.mktime_tz() no longer relies on system | Alexander Belopolsky | 2012-06-22 | 3 | -4/+13 |
| | | | | mktime() when timezone offest is supplied. | ||||
* | #10053: Don't close FDs when FileIO.__init__ fails | Hynek Schlawack | 2012-06-21 | 3 | -6/+19 |
| | | | | Loosely based on the work by Hirokazu Yamamoto. | ||||
* | Fix GzipFile's handling of filenames given as bytes objects. | Nadeem Vawda | 2012-06-19 | 3 | -4/+20 |
| |