summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* (Merge 3.3) Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() nowVictor Stinner2013-12-192-0/+9
|\ | | | | | | raise a ValueError if num is negative (instead of raising a SystemError).
| * Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise aVictor Stinner2013-12-192-0/+9
| | | | | | | | ValueError if num is negative (instead of raising a SystemError).
* | Merge headsVictor Stinner2013-12-191-1/+2
|\ \
| * | Better assertion in PyObject_Call() to detect functions returning a result withVictor Stinner2013-12-191-1/+2
| | | | | | | | | | | | an exception set (invalid state).
* | | (Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalidVictor Stinner2013-12-193-1/+12
|\ \ \ | | |/ | |/| | | | isolation level (wrong type).
| * | Issue #20026: Fix the sqlite module to handle correctly invalid isolation levelVictor Stinner2013-12-193-1/+12
| | | | | | | | | | | | (wrong type).
* | | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-193-6/+50
|\ \ \ | |/ / | | / | |/ |/| quotechar fields. Original patch by Vajrasky Kok.
| * Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-193-6/+50
| | | | | | | | quotechar fields. Original patch by Vajrasky Kok.
* | Fix _Py_DisplaySourceLine(), if PyTokenizer_FindEncodingFilename() fails, clearVictor Stinner2013-12-191-0/+2
| | | | | | | | the exception to not call open() with an exception set.
* | Fix os.listdir(): _Py_dup() already raises an exception on error, no need toVictor Stinner2013-12-191-4/+2
| | | | | | | | raise a new exception
* | Issue #19946: appropriately skip new multiprocessing testsNick Coghlan2013-12-191-9/+5
| | | | | | | | | | | | Thanks to Christian Heimes for noting the buildbot failures and to Zachary Ware for providing the patch to make the new tests play nice with both other platforms and unittest test discovery
* | Closes #19902: Merged update from 3.3.Vinay Sajip2013-12-191-0/+32
|\ \ | |/
| * Issue #19902: Added list of logging levels.Vinay Sajip2013-12-191-0/+32
| |
* | Remove some dead code in importlib, introduced with the PEP 451 patch.Eric Snow2013-12-192-994/+983
| | | | | | | | | | | | | | Early in the PEP 451 implementation some of the importlib loaders had their own _get_spec() methods to simplify accommodating them. However, later implementations removed the need. They simply failed to remove this code at the same time. :)
* | merge 3.3 (#20018)Benjamin Peterson2013-12-181-1/+1
|\ \ | |/
| * update url to spec (closes #20018)Benjamin Peterson2013-12-181-1/+1
| |
* | remove trailing spacesGregory P. Smith2013-12-180-0/+0
|\ \ | |/
| * remove trailing spaces.Gregory P. Smith2013-12-181-7/+7
| |
* | Closes #20005: Fix typo in operator docs. Patch by Claudiu Popa.Zachary Ware2013-12-181-1/+1
|\ \ | |/
| * Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa.Zachary Ware2013-12-181-1/+1
| |
* | Issue #19492: Silently skipped distutils tests now reported as skipped.Serhiy Storchaka2013-12-188-63/+36
|\ \ | |/
| * Issue #19492: Silently skipped distutils tests now reported as skipped.Serhiy Storchaka2013-12-188-57/+32
| |
* | Merge: #19855: uuid.get_node now looks on the PATH for executables on unix.R David Murray2013-12-182-27/+32
|\ \ | |/
| * #19855: uuid.get_node now looks on the PATH for executables on unix.R David Murray2013-12-182-27/+32
| | | | | | | | Patch by Serhiy Storchaka.
* | Issue #20006: Fix sporadic failures in test_weakset.Antoine Pitrou2013-12-172-2/+8
|\ \ | |/
| * Issue #20006: Fix sporadic failures in test_weakset.Antoine Pitrou2013-12-172-1/+8
| |
| * Revert misled test change in f189da5bda26.Antoine Pitrou2013-12-171-1/+0
| |
* | Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-174-1/+8
|\ \ | |/ | | | | Original patch by Simon Sapin.
| * Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-174-1/+8
| | | | | | | | Original patch by Simon Sapin.
* | Issue #16404: Add checks for return value of PyLong_FromLong() inSerhiy Storchaka2013-12-172-8/+5
|\ \ | |/ | | | | | | sys.getwindowsversion() and ossaudiodev.setparameters(). Reported by Ned Batchelder.
| * Issue #16404: Add checks for return value of PyLong_FromLong() inSerhiy Storchaka2013-12-172-8/+5
| | | | | | | | | | sys.getwindowsversion() and ossaudiodev.setparameters(). Reported by Ned Batchelder.
* | Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-171-0/+1
|\ \ | |/
| * Fixed leak in sys.flags initialization.Serhiy Storchaka2013-12-171-0/+1
| |
* | Close #19946: use runpy as needed in multiprocessingNick Coghlan2013-12-174-54/+375
| | | | | | | | | | | | - handles main files without a suffix - handles main submodules properly - adds test cases for the various kinds of __main__
* | Issue #19713: Fix mistakes in the import page of language reference.Eric Snow2013-12-171-102/+118
| | | | | | | | These mistakes were introduced by the initial PEP 451 merge.
* | Issue #19713: Update importlib docs for module spec changes, including ↵Eric Snow2013-12-172-22/+154
| | | | | | | | deprecations.
* | Issue #20001: Add the SVG source of the pathlib-inheritance diagram to HgEli Bendersky2013-12-171-0/+4
| |
* | Backout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does ↵Victor Stinner2013-12-164-32/+10
| | | | | | | | not work on Windows
* | tracemalloc: fix usage of strtol(), value can be LONG_MIN or LONG_MAX on ERANGEVictor Stinner2013-12-161-1/+2
| |
* | tracemalloc: only use unsigned types to compute hashVictor Stinner2013-12-161-5/+4
| | | | | | | | | | Commit to simplify the backport to python 2.7 and to make the code more consistent.
* | Issue #18283: shutil.which() now supports bytes argument, not only text ↵Victor Stinner2013-12-164-10/+32
| | | | | | | | argument.
* | (Merge 3.3) Close #19999: tolerate coarse time when testing time.monotonic() onVictor Stinner2013-12-161-1/+1
|\ \ | |/ | | | | very busy/slow buildbot
| * Close #19999: tolerate coarse time when testing time.monotonic() on veryVictor Stinner2013-12-161-1/+1
| | | | | | | | busy/slow buildbot
* | mergeChristian Heimes2013-12-161-3/+4
|\ \
| * | Mention specific exceptions instead of OSError where appropriate.Antoine Pitrou2013-12-161-3/+4
| | |
* | | Issue #19919: Fix flacky SSL test. connect_ex() sometimes returnsChristian Heimes2013-12-162-2/+7
|\ \ \ | |/ / |/| / | |/ EWOULDBLOCK on Windows or VMs hosted on Windows.
| * Issue #19919: Fix flacky SSL test. connect_ex() sometimes returnsChristian Heimes2013-12-162-2/+7
| | | | | | | | EWOULDBLOCK on Windows or VMs hosted on Windows.
* | Issue #19921: When Path.mkdir() is called with parents=True, any missing ↵Antoine Pitrou2013-12-164-4/+20
| | | | | | | | | | | | parent is created with the default permissions, ignoring the mode argument (mimicking the POSIX "mkdir -p" command). Patch by Serhiy.
* | Issue #19887: Improve the Path.resolve() algorithm to support certain ↵Antoine Pitrou2013-12-163-35/+96
| | | | | | | | | | | | symlink chains. Original patch by Serhiy.
* | Issue #19987: Merge with 3.3Zachary Ware2013-12-162-9/+9
|\ \ | |/