Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | Release bump for 3.4.2 final.v3.4.2 | Larry Hastings | 2014-10-06 | 5 | -8/+8 | |
| | | | | ||||||
| * | | | Update pydoc topics and fix supsicious markup for 3.4.2 final. | Larry Hastings | 2014-10-06 | 3 | -85/+85 | |
| | | | | ||||||
| * | | | Drop pydocgui.pyw from the distribution. | Martin v. Löwis | 2014-09-21 | 1 | -4/+1 | |
| | | | | ||||||
* | | | | idlelib.configHandler: revise docstrings, add spaces, use False/True, add some | Terry Jan Reedy | 2014-10-07 | 1 | -255/+233 | |
| | | | | | | | | | | | | | | | | TODOs (mostly to do after add tests), and make a few other changes. | |||||
* | | | | use source role instead of linking to svn | Benjamin Peterson | 2014-10-07 | 1 | -9/+8 | |
| | | | | ||||||
* | | | | Closes #16155: fix a few errors in doctest output of the FAQ pages. | Georg Brandl | 2014-10-06 | 3 | -6/+17 | |
| | | | | ||||||
* | | | | Closes #12148: clarify "or's together option flags" in doctest docs. | Georg Brandl | 2014-10-06 | 1 | -3/+3 | |
| | | | | ||||||
* | | | | Closes #21782: the default hash(x) is not exactly id(x) but derived from it. | Georg Brandl | 2014-10-06 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | Closes #10031: overhaul the "imports" section of the programming FAQ. | Georg Brandl | 2014-10-06 | 1 | -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 Brandl | 2014-10-06 | 1 | -2/+6 | |
| | | | | ||||||
* | | | | Clean up the docs of PyObject_IsSubclass and PyObject_IsInstance, and ↵ | Georg Brandl | 2014-10-06 | 2 | -30/+35 | |
| | | | | | | | | | | | | | | | | mention that they call the PEP 3119 methods. | |||||
* | | | | Closes #22507: document that PyType_IsSubtype does not call __subclasscheck__. | Georg Brandl | 2014-10-06 | 1 | -0/+6 | |
| | | | | ||||||
* | | | | Document builtin classes as such, not functions. | Georg Brandl | 2014-10-06 | 1 | -41/+41 | |
| | | | | ||||||
* | | | | Closes #22565: fix argument types of PyErr_WarnEx. | Georg Brandl | 2014-10-06 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Issue #22546: update doc for mini-language float None presentation type. | Terry Jan Reedy | 2014-10-06 | 1 | -4/+6 | |
| | | | | ||||||
* | | | | PyObject not PyType (closes #18494) | Benjamin Peterson | 2014-10-06 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | Closes #21173: Fix len() on a WeakKeyDictionary when .clear() was called ↵ | Antoine Pitrou | 2014-10-05 | 3 | -0/+52 | |
| | | | | | | | | | | | | | | | | with an iterator alive. | |||||
* | | | | cleanup test_posix | Victor Stinner | 2014-10-05 | 1 | -9/+10 | |
| | | | | ||||||
* | | | | Issue #22390: Remove files created by tests | Victor Stinner | 2014-10-05 | 7 | -3/+10 | |
| | | | | ||||||
* | | | | Issue #22290: Fix error handling in the _posixsubprocess module. | Victor Stinner | 2014-10-05 | 2 | -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 Brandl | 2014-10-05 | 1 | -24/+1 | |
| | | | | ||||||
* | | | | #14201: Update ctypes docs to match behavior changed from 214b28d7a999. | R David Murray | 2014-10-04 | 1 | -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 Murray | 2014-10-04 | 2 | -5/+7 | |
| | | | | | | | | | | | | | | | | Original patch by Peter Saveliev. | |||||
* | | | | Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is ↵ | Antoine Pitrou | 2014-10-04 | 3 | -1/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | mutated while iterating. Patch by Olivier Grisel. | |||||
* | | | | Fixed issue number for issue #22470 in Misc/NEWS. | Serhiy Storchaka | 2014-10-04 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Merge heads | Serhiy Storchaka | 2014-10-04 | 2 | -14/+14 | |
|\ \ \ \ | ||||||
| * | | | | Realign packaging docs with PyPUG changes | Nick Coghlan | 2014-10-04 | 2 | -14/+14 | |
| | | | | | ||||||
* | | | | | Issue #22518: Fixed integer overflow issues in "backslashreplace", | Serhiy Storchaka | 2014-10-04 | 2 | -2/+11 | |
|/ / / / | | | | | | | | | | | | | "xmlcharrefreplace", and "surrogatepass" error handlers. | |||||
* | | | | Issue #22219: The zipfile module CLI now adds entries for directories | Serhiy Storchaka | 2014-10-04 | 2 | -2/+12 | |
| | | | | | | | | | | | | | | | | (including empty directories) in ZIP file. | |||||
* | | | | #14056: Small improvements to the tarfile documentation. | R David Murray | 2014-10-04 | 1 | -10/+13 | |
| | | | | | | | | | | | | | | | | Patch by Éric Araujo with help from Lars Gustäbel. | |||||
* | | | | separate cert loading tests into Windows and non-Windows cases | Benjamin Peterson | 2014-10-03 | 1 | -0/+15 | |
| | | | | ||||||
* | | | | also use openssl envvars to find certs on windows (closes #22449) | Benjamin Peterson | 2014-10-03 | 3 | -2/+12 | |
| | | | | | | | | | | | | | | | | Patch by Christian Heimes and Alex Gaynor. | |||||
* | | | | Fix a few typo/grammar issues in the multiprocessing docs. | Zachary Ware | 2014-10-03 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | Reported by Scott Hinton on docs@. | |||||
* | | | | #12780: update inspect test skipIf for PEP 3147. | R David Murray | 2014-10-03 | 1 | -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 Murray | 2014-10-03 | 1 | -0/+30 | |
| | | | | | | | | | | | | | | | | Python3 does not have the bug covered by the issue. | |||||
* | | | | Closes #18729: minor markup improvement. | Georg Brandl | 2014-10-02 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Closes #19434: fix copy-paste error in MIMENonMultipart docstring. | Georg Brandl | 2014-10-02 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Issue #20079: Fixed tests. | Serhiy Storchaka | 2014-10-02 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Issue #20079: Updated alias mapping to glibc 2.19 SUPPORTED file. | Serhiy Storchaka | 2014-10-02 | 1 | -1/+11 | |
| | | | | ||||||
* | | | | Issue #20076: Remove just added the sr_rs.utf8@latn alias because it is | Serhiy Storchaka | 2014-10-02 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | | | derived from sr_rs@latin. | |||||
* | | | | closes #22528: add source links to symtable and compileall | Georg Brandl | 2014-10-02 | 2 | -0/+8 | |
| | | | | ||||||
* | | | | Closes #19342: improve docstrings in grp module. | Georg Brandl | 2014-10-02 | 1 | -6/+6 | |
| | | | | ||||||
* | | | | Remove unused and now removed config value. | Georg Brandl | 2014-10-02 | 1 | -7/+1 | |
| | | | | ||||||
* | | | | Issue #21971: Index and update turtledemo doc. | Terry Jan Reedy | 2014-10-02 | 1 | -13/+18 | |
| | | | | ||||||
* | | | | - Issue #17219: Add library build dir for Python extension cross-builds. | doko@ubuntu.com | 2014-10-02 | 2 | -1/+3 | |
| | | | | ||||||
* | | | | - Issue #18096: Fix library order returned by python-config. | doko@ubuntu.com | 2014-10-02 | 3 | -3/+6 | |
| | | | | ||||||
* | | | | Issue #20076: Added non derived UTF-8 aliases to locale aliases table. | Serhiy Storchaka | 2014-10-01 | 2 | -0/+11 | |
| | | | | ||||||
* | | | | Issue #20079: Added locales supported in glibc 2.18 to locale alias table. | Serhiy Storchaka | 2014-10-01 | 2 | -0/+101 | |
| | | | | ||||||
* | | | | Issue 22492: Be explicit that print does not support binary mode files. | Terry Jan Reedy | 2014-10-01 | 1 | -5/+8 | |
| | | | | | | | | | | | | | | | | Original patch by Georg Brandl. | |||||
* | | | | Remove old overridden version of a Sphinx CSS file. | Georg Brandl | 2014-10-01 | 1 | -446/+0 | |
| | | | | | | | | | | | | | | | | All Python-specific styling is now in the theme anyway. |