summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Closes #21480: better explanation of "hg touch" in the Makefile.Georg Brandl2014-10-061-2/+6
| | |
* | | merge with 3.4Georg Brandl2014-10-062-30/+35
|\ \ \ | |/ /
| * | Clean up the docs of PyObject_IsSubclass and PyObject_IsInstance, and ↵Georg Brandl2014-10-062-30/+35
| | | | | | | | | | | | mention that they call the PEP 3119 methods.
* | | merge with 3.4Georg Brandl2014-10-061-0/+6
|\ \ \ | |/ /
| * | Closes #22507: document that PyType_IsSubtype does not call __subclasscheck__.Georg Brandl2014-10-061-0/+6
| | |
* | | merge with 3.4Georg Brandl2014-10-061-41/+41
|\ \ \ | |/ /
| * | Document builtin classes as such, not functions.Georg Brandl2014-10-061-41/+41
| | |
* | | merge with 3.4Georg Brandl2014-10-061-1/+1
|\ \ \ | |/ /
| * | Closes #22565: fix argument types of PyErr_WarnEx.Georg Brandl2014-10-061-1/+1
| | |
* | | Merge with 3.4Terry Jan Reedy2014-10-061-4/+6
|\ \ \ | |/ /
| * | Issue #22546: update doc for mini-language float None presentation type.Terry Jan Reedy2014-10-061-4/+6
| | |
* | | merge 3.4 (#18494)Benjamin Peterson2014-10-061-2/+2
|\ \ \ | |/ /
| * | PyObject not PyType (closes #18494)Benjamin Peterson2014-10-061-2/+2
| | |
* | | Remove unused "block" argument in SSLObject.do_handshake() (issue #21965)Antoine Pitrou2014-10-051-1/+1
| | |
* | | Issue #21965: Add support for in-memory SSL to the ssl module.Antoine Pitrou2014-10-055-102/+926
| | | | | | | | | | | | Patch by Geert Jansen.
* | | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called ↵Antoine Pitrou2014-10-053-0/+52
|\ \ \ | |/ / | | | | | | with an iterator alive.
| * | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called ↵Antoine Pitrou2014-10-053-0/+52
| | | | | | | | | | | | with an iterator alive.
* | | #16518: Bring error messages in harmony with docs ("bytes-like object")R David Murray2014-10-0511-22/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some time ago we changed the docs to consistently use the term 'bytes-like object' in all the contexts where bytes, bytearray, memoryview, etc are used. This patch (by Ezio Melotti) completes that work by changing the error messages that previously reported that certain types did "not support the buffer interface" to instead say that a bytes-like object is required. (The glossary entry for bytes-like object references the discussion of the buffer protocol in the docs.)
* | | Merge 3.4Victor Stinner2014-10-057-12/+20
|\ \ \ | |/ /
| * | cleanup test_posixVictor Stinner2014-10-051-9/+10
| | |
| * | Issue #22390: Remove files created by testsVictor Stinner2014-10-057-3/+10
| | |
* | | (Merge 3.4) Issue #22290: Fix error handling in the _posixsubprocess module.Victor Stinner2014-10-052-6/+47
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | * Don't call the garbage collector with an exception set: it causes an assertion to fail in debug mode. * Enhance also error handling if allocating an array for the executable list failed. * Add an unit test for 4 different errors in the _posixsubprocess module.
| * | Issue #22290: Fix error handling in the _posixsubprocess module.Victor Stinner2014-10-052-6/+47
| | | | | | | | | | | | | | | | | | | | | | | | * Don't call the garbage collector with an exception set: it causes an assertion to fail in debug mode. * Enhance also error handling if allocating an array for the executable list failed. * Add an unit test for 4 different errors in the _posixsubprocess module.
* | | merge with 3.4Georg Brandl2014-10-051-24/+1
|\ \ \ | |/ /
| * | Closes #19477: remove outdated documentation of tp_print type object slot.Georg Brandl2014-10-051-24/+1
| | |
* | | Add Dan O'Reilly to Misc/ACKSAntoine Pitrou2014-10-051-0/+1
| | |
* | | Merge: #14201: Update ctypes docs to match behavior changed from 214b28d7a999.R David Murray2014-10-041-5/+10
|\ \ \ | |/ /
| * | #14201: Update ctypes docs to match behavior changed from 214b28d7a999.R David Murray2014-10-041-5/+10
| | | | | | | | | | | | Original patch by Erik Johansson, slightly updated by Meador Inge.
* | | Merge: #11866: Eliminate race condition in the computation of names for new ↵R David Murray2014-10-042-5/+7
|\ \ \ | |/ / | | | | | | threads.
| * | #11866: Eliminate race condition in the computation of names for new threads.R David Murray2014-10-042-5/+7
| | | | | | | | | | | | Original patch by Peter Saveliev.
* | | Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is ↵Antoine Pitrou2014-10-043-1/+7
|\ \ \ | |/ / | | | | | | | | | | | | mutated while iterating. Patch by Olivier Grisel.
| * | Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is ↵Antoine Pitrou2014-10-043-1/+7
| | | | | | | | | | | | | | | | | | mutated while iterating. Patch by Olivier Grisel.
* | | Add NEWS entry I forgot to commit.Antoine Pitrou2014-10-041-0/+4
| | |
* | | Issue #11271: concurrent.futures.Executor.map() now takes a *chunksize*Antoine Pitrou2014-10-044-3/+83
| | | | | | | | | | | | | | | argument to allow batching of tasks in child processes and improve performance of ProcessPoolExecutor. Patch by Dan O'Reilly.
* | | Fixed tests on Windows for issue #21883.Serhiy Storchaka2014-10-043-3/+4
| | |
* | | Fixed issue number for issue #22470 in Misc/NEWS.Serhiy Storchaka2014-10-041-1/+1
|\ \ \ | |/ /
| * | Fixed issue number for issue #22470 in Misc/NEWS.Serhiy Storchaka2014-10-041-1/+1
| | |
* | | Issue #21883: os.path.join() and os.path.relpath() now raise a TypeError withSerhiy Storchaka2014-10-048-91/+137
| | | | | | | | | | | | more helpful error message for unsupported or mismatched types of arguments.
* | | Null mergeSerhiy Storchaka2014-10-040-0/+0
|\ \ \ | |/ /
| * | Merge headsSerhiy Storchaka2014-10-042-14/+14
| |\ \
* | \ \ Merge headsSerhiy Storchaka2014-10-042-14/+14
|\ \ \ \
| * \ \ \ Merge packaging doc updates from 3.4Nick Coghlan2014-10-042-14/+14
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | Realign packaging docs with PyPUG changesNick Coghlan2014-10-042-14/+14
| | | | |
* | | | | Issue #22518: Fixed integer overflow issues in "backslashreplace",Serhiy Storchaka2014-10-042-2/+11
|\ \ \ \ \ | |/ / / / |/| | / / | | |/ / | |/| | "xmlcharrefreplace", and "surrogatepass" error handlers.
| * | | Issue #22518: Fixed integer overflow issues in "backslashreplace",Serhiy Storchaka2014-10-042-2/+11
| |/ / | | | | | | | | | "xmlcharrefreplace", and "surrogatepass" error handlers.
* | | Issue #22219: The zipfile module CLI now adds entries for directoriesSerhiy Storchaka2014-10-042-2/+12
|\ \ \ | |/ / | | | | | | (including empty directories) in ZIP file.
| * | Issue #22219: The zipfile module CLI now adds entries for directoriesSerhiy Storchaka2014-10-042-2/+12
| | | | | | | | | | | | (including empty directories) in ZIP file.
* | | Merge: #14056: Small improvements to the tarfile documentation.R David Murray2014-10-041-10/+13
|\ \ \ | |/ /
| * | #14056: Small improvements to the tarfile documentation.R David Murray2014-10-041-10/+13
| | | | | | | | | | | | Patch by Éric Araujo with help from Lars Gustäbel.
* | | merge 3.4Benjamin Peterson2014-10-031-0/+15
|\ \ \ | |/ /