- 08 Oct, 2014 4 commits
-
-
Antoine Pitrou authored
Initial patch by Mark Shannon.
-
Berker Peksag authored
The correct parameter name is "fp", not "file".
-
Larry Hastings authored
-
Larry Hastings authored
-
- 07 Oct, 2014 2 commits
-
-
Terry Jan Reedy authored
TODOs (mostly to do after add tests), and make a few other changes.
-
Benjamin Peterson authored
-
- 06 Oct, 2014 14 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
Remove the advice to never use relative imports; it is a leftover from 2.x implicit relative imports. Remove the advice to locally import modules in __init__, it is a strange practice. Remove the advice to use "from ... import *" with some modules.
-
Georg Brandl authored
-
Georg Brandl authored
Clean up the docs of PyObject_IsSubclass and PyObject_IsInstance, and mention that they call the PEP 3119 methods.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Terry Jan Reedy authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Benjamin Peterson authored
-
- 05 Oct, 2014 5 commits
-
-
Antoine Pitrou authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
* 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.
-
Georg Brandl authored
-
- 04 Oct, 2014 9 commits
-
-
R David Murray authored
Original patch by Erik Johansson, slightly updated by Meador Inge.
-
R David Murray authored
Original patch by Peter Saveliev.
-
Antoine Pitrou authored
Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while iterating. Patch by Olivier Grisel.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
"xmlcharrefreplace", and "surrogatepass" error handlers.
-
Nick Coghlan authored
-
Serhiy Storchaka authored
(including empty directories) in ZIP file.
-
R David Murray authored
Patch by Éric Araujo with help from Lars Gustäbel.
-
- 03 Oct, 2014 5 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Patch by Christian Heimes and Alex Gaynor.
-
Zachary Ware authored
Reported by Scott Hinton on docs@.
-
R David Murray authored
The test needs to be skipped if unicodedata is either part of the main binary (a repackaging of cpython on Windows?) or has python source (pypy?). PEP 3147 makes __file__ point to the .py source, so we need to change the extension check from looking for the old .pyc/.pyo to just looking for .py. Note that this skip should never trigger on CPython itself, so one could argue it should be dropped instead. But since it exists, why risk breaking someone else's python.
-
R David Murray authored
Python3 does not have the bug covered by the issue.
-
- 02 Oct, 2014 1 commit
-
-
Georg Brandl authored
-