summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Issue #15319: Revert wrapping of sys.stdin. Patch by Serhiy Storchaka.Martin v. Löwis2012-07-112-2/+2
|
* Issue 13532: Allow bytearrays to be written also.Terry Jan Reedy2012-07-092-4/+4
|
* Widen test to support unicode.Martin v. Löwis2012-07-092-2/+2
|
* - Issue #13532: Check that arguments to sys.stdout.write are strings.Martin v. Löwis2012-07-093-3/+25
|
* Issue #13557: Clarify effect of giving two different namespaces to exec orTerry Jan Reedy2012-07-083-2/+10
| | | | execfile().
* merge heads.Senthil Kumaran2012-07-080-0/+0
|\
| * Fix the buildbot failure - msg164973Senthil Kumaran2012-07-082-5/+4
| |
* | revert the changes done in d931a3b64fd6 - buildbot failure.Senthil Kumaran2012-07-083-13/+1
|/ | | | | The fix for issue14826 might need to address toBytes and test_url_encoding in test_cookielib.py before it is brought back in.
* Fix issue14826 - make urllib.request.Request quoted url consistent with ↵Senthil Kumaran2012-07-083-2/+14
| | | | | | URLOpener open method. Patch contributed by Stephen Thorne.
* Fix leftover quote.Georg Brandl2012-07-061-1/+1
|
* Issue #15247: FileIO now raises an error when given a file descriptor ↵Antoine Pitrou2012-07-063-12/+16
| | | | pointing to a directory.
* Fix closes issue # 15033 - Return the proper exitcode for failure when ↵Senthil Kumaran2012-07-053-2/+21
| | | | modules are invoked using -m switch. Patch contributed by Jeff Knupp
* Issue #1677: Unused variable warning in Non-WindowsJesus Cea2012-07-031-0/+3
|
* Backed out changeset 7ccc2cea6969Jesus Cea2012-07-031-3/+0
|
* Issue #1667: Unused variable warning in Non-WindowsJesus Cea2012-07-031-0/+3
|
* Create ~/.pypirc securely (#13512).Éric Araujo2012-07-033-1/+5
| | | | | | There was a window between the write and the chmod where the user’s password would be exposed, depending on default permissions. Philip Jenvey’s patch fixes it.
* Branch mergeÉric Araujo2012-07-031-1/+2
|\
| * Make it easier to search for the grouper() recipe.Raymond Hettinger2012-07-031-1/+2
| |
* | Ignore .nfs* files in distutils (#7719).Éric Araujo2012-07-036-5/+36
| | | | | | | | | | | | | | | | These files are created by some NFS clients a file is edited and removed concurrently (see added link in doc for more info). If such a file is removed between distutils calls listdir and copy, it will get confused. Other special files are ignored in sdist (namely VCS directories), but this has to be filtered out earlier.
* | Use source role to get links to filesÉric Araujo2012-07-021-3/+3
| |
* | Adapt mentions of future changes in docÉric Araujo2012-07-024-5/+4
| |
* | Avoid SyntaxError in script using print functionÉric Araujo2012-07-021-0/+2
|/
* The StopIteration API applies to both tokenize() and generate_tokens()Raymond Hettinger2012-07-021-1/+2
|
* Issue #15212: fix typo in compiler module (rename SC_GLOBAL_EXPLICT to ↵Antoine Pitrou2012-07-013-5/+5
| | | | | | SC_GLOBAL_EXPLICIT). Patch by Arfrever.
* Make call of os.getppid() conditional: it is not available on Windows.Georg Brandl2012-07-011-1/+2
|
* Remove an unneeded footnote.Georg Brandl2012-07-011-6/+3
|
* Issue #15170: Quote the variable that expands to the current directory.Stefan Krah2012-06-301-1/+1
|
* Closes #14591: Random.jumpahead could produce an invalid MT state on 64-bit ↵Mark Dickinson2012-06-303-2/+28
| | | | machines.
* MergedTim Golden2012-06-290-0/+0
|\
| * Backed out changeset ee51e3aef302 - it broke the test suiteAntoine Pitrou2012-06-291-9/+8
| |
| * urlparse cleanup. rename keywords used as variablesSenthil Kumaran2012-06-291-8/+9
| |
* | Issue #1677: Handle better a race condition between the interactive ↵Tim Golden2012-06-291-23/+16
|/ | | | | | interpreter and the Ctrl-C signal handler on Windows
* #5346: Preserve permissions of mbox, MMDF and Babyl mailbox files on flush()Petri Lehtinen2012-06-293-0/+23
|
* #9559: Don't call _pre_mailbox_hook more than oncePetri Lehtinen2012-06-291-2/+5
|
* urlparse docs clean upSenthil Kumaran2012-06-291-5/+5
|
* Issue #5067: improve some json error messages.Antoine Pitrou2012-06-285-16/+15
| | | | Patch by Serhiy Storchaka.
* Issue #15219: Fix a reference leak when hashlib.new() is called withAmaury Forgeot d'Arc2012-06-283-6/+6
| | | | invalid parameters.
* #9559: Append data to single-file mailbox files if messages are only addedPetri Lehtinen2012-06-283-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.
* Regrtest option "-n" doesn't exist in 2.7.Antoine Pitrou2012-06-272-2/+2
|
* Flush stdout and stderr when running tests in parallelAntoine Pitrou2012-06-271-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 scriptsAntoine Pitrou2012-06-272-2/+2
|
* issue13666 - Fixing datetime documentation example when using tzinfoSenthil Kumaran2012-06-261-9/+8
|
* Fixes issue #12268 for file readline, readlines and read() and readinto methods.Gregory P. Smith2012-06-263-5/+212
| | | | | | They 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.
* Try to fix failure of a Windows buildbot to capture name resolution errors.Antoine Pitrou2012-06-251-0/+3
|
* Issue #15179: Closed socket on connection failure. Thanks to Kazutaka Morita ↵Vinay Sajip2012-06-251-1/+5
| | | | for the patch.
* Issue #15170: Try the HOST_PYTHON hack for 2.7.Stefan Krah2012-06-251-0/+1
|
* Remove useless test (flowinfo is unsigned).Charles-François Natali2012-06-231-2/+2
|
* Fixed the name of the 'email.Utils' module in tests.Alexander Belopolsky2012-06-221-2/+2
|
* Issue #14653: email.utils.mktime_tz() no longer relies on systemAlexander Belopolsky2012-06-223-4/+13
| | | | mktime() when timezone offest is supplied.
* #10053: Don't close FDs when FileIO.__init__ failsHynek Schlawack2012-06-213-6/+20
| | | | Loosely based on the work by Hirokazu Yamamoto.