summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue 15337: help() shown as undocumentedRaymond Hettinger2012-07-162-4/+5
|
* Fixes Issue #14635: telnetlib will use poll() rather than select() when possibleGregory P. Smith2012-07-164-1/+224
| | | | | | to avoid failing due to the select() file descriptor limit. Contributed by Akintayo Holder and under the Google contributor agreement.
* allow any number to be returned from __length_hint__ (closes #15354)Benjamin Peterson2012-07-151-1/+1
|
* Try other approach to fix issue #15334.Antoine Pitrou2012-07-131-3/+8
|
* #15345: fix SyntaxError in argparse tutorial example. Patch by Simon Hayward.Ezio Melotti2012-07-131-1/+1
|
* Issue #15334: skip test_dynamic_key when run in non-interactive mode.Antoine Pitrou2012-07-131-0/+1
| | | | Patch by Jeremy Kloth.
* Issue #15338: skip test_UNC_path when the current user doesn't have enough ↵Antoine Pitrou2012-07-131-0/+7
| | | | permissions to access the path.
* Use _RPCFile.write properly.Martin v. Löwis2012-07-111-2/+2
|
* Don't use TextIOBase implementations in _RPCFile.Martin v. Löwis2012-07-111-2/+8
|
* 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
|