summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #18176: Change generic UCD PropList link to version specific link.R David Murray2014-10-102-2/+4
|
* De-'colour'ize stdlib except for idlelib.configDialog.Terry Jan Reedy2014-10-095-23/+25
| | | | Tweak docstrigs and comments in affected functions in idlelib.configHandler.
* #18176: fix another reference and add it to the makeunicodedata comment.R David Murray2014-10-092-1/+2
|
* #18176: updated stdtypes UCD link, added reminder to makeunicodedata.R David Murray2014-10-092-1/+5
| | | | Patch by Alexander Belopolsky.
* Issue #22588: Fix typo in _testcapi.test_incref_decref_API()Victor Stinner2014-10-091-1/+1
|
* Issue #22568: Fix compilation of posixmodule.c with Open Watcom: rename "utime"Victor Stinner2014-10-091-21/+21
| | | | | variable to "ut" to avoid conflict with the C utime() function. Patch written by Jeffrey Armstrong.
* Closes #22580: Fix documentation of PyUnicode_Tailmatch()Victor Stinner2014-10-091-1/+1
| | | | The result type is Py_ssize_t (and not int).
* Issue 3068: Move idlelib.configDialog action button creation into a separateTerry Jan Reedy2014-10-091-19/+21
| | | | method so it can be reused by the new extension dialog.
* Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-085-42/+33
| | | | _PyErr_ChainExceptions() function.
* Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ↵Antoine Pitrou2014-10-088-161/+63
| | | | | | exception tracebacks. Initial patch by Mark Shannon.
* Issue #22576: Fix signatures of FTP.storbinary() and FTP.storlines() methods.Berker Peksag2014-10-081-4/+4
| | | | The correct parameter name is "fp", not "file".
* Merge from 3.4.2 release head back into 3.4 mainline.Larry Hastings2014-10-0811-12619/+99
|\
| * Post-release changes after 3.4.2 final.Larry Hastings2014-10-082-1/+13
| |
| * Added tag v3.4.2 for changeset ab2c023a9432Larry Hastings2014-10-061-0/+1
| |
| * Release bump for 3.4.2 final.v3.4.2Larry Hastings2014-10-065-8/+8
| |
| * Update pydoc topics and fix supsicious markup for 3.4.2 final.Larry Hastings2014-10-063-85/+85
| |
| * Drop pydocgui.pyw from the distribution.Martin v. Löwis2014-09-211-4/+1
| |
* | idlelib.configHandler: revise docstrings, add spaces, use False/True, add someTerry Jan Reedy2014-10-071-255/+233
| | | | | | | | TODOs (mostly to do after add tests), and make a few other changes.
* | use source role instead of linking to svnBenjamin Peterson2014-10-071-9/+8
| |
* | Closes #16155: fix a few errors in doctest output of the FAQ pages.Georg Brandl2014-10-063-6/+17
| |
* | Closes #12148: clarify "or's together option flags" in doctest docs.Georg Brandl2014-10-061-3/+3
| |
* | Closes #21782: the default hash(x) is not exactly id(x) but derived from it.Georg Brandl2014-10-061-2/+2
| |
* | Closes #10031: overhaul the "imports" section of the programming FAQ.Georg Brandl2014-10-061-16/+2
| | | | | | | | | | | | 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.
* | Closes #21480: better explanation of "hg touch" in the Makefile.Georg Brandl2014-10-061-2/+6
| |
* | 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.
* | Closes #22507: document that PyType_IsSubtype does not call __subclasscheck__.Georg Brandl2014-10-061-0/+6
| |
* | Document builtin classes as such, not functions.Georg Brandl2014-10-061-41/+41
| |
* | Closes #22565: fix argument types of PyErr_WarnEx.Georg Brandl2014-10-061-1/+1
| |
* | Issue #22546: update doc for mini-language float None presentation type.Terry Jan Reedy2014-10-061-4/+6
| |
* | PyObject not PyType (closes #18494)Benjamin Peterson2014-10-061-2/+2
| |
* | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called ↵Antoine Pitrou2014-10-053-0/+52
| | | | | | | | with an iterator alive.
* | cleanup test_posixVictor Stinner2014-10-051-9/+10
| |
* | Issue #22390: Remove files created by testsVictor Stinner2014-10-057-3/+10
| |
* | 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.
* | Closes #19477: remove outdated documentation of tp_print type object slot.Georg Brandl2014-10-051-24/+1
| |
* | #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.
* | #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.
* | Fixed issue number for issue #22470 in Misc/NEWS.Serhiy Storchaka2014-10-041-1/+1
| |
* | Merge headsSerhiy Storchaka2014-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 #22219: The zipfile module CLI now adds entries for directoriesSerhiy Storchaka2014-10-042-2/+12
| | | | | | | | (including empty directories) in ZIP file.
* | #14056: Small improvements to the tarfile documentation.R David Murray2014-10-041-10/+13
| | | | | | | | Patch by Éric Araujo with help from Lars Gustäbel.
* | separate cert loading tests into Windows and non-Windows casesBenjamin Peterson2014-10-031-0/+15
| |
* | also use openssl envvars to find certs on windows (closes #22449)Benjamin Peterson2014-10-033-2/+12
| | | | | | | | Patch by Christian Heimes and Alex Gaynor.
* | Fix a few typo/grammar issues in the multiprocessing docs.Zachary Ware2014-10-031-3/+3
| | | | | | | | Reported by Scott Hinton on docs@.
* | #12780: update inspect test skipIf for PEP 3147.R David Murray2014-10-031-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | #8473: Add tests that doctest uses universal newlines in testfile.R David Murray2014-10-031-0/+30
| | | | | | | | Python3 does not have the bug covered by the issue.
* | Closes #18729: minor markup improvement.Georg Brandl2014-10-021-1/+1
| |