summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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.
* | idlelib.configHandler: revise docstrings, add spaces, use False/True, add someTerry Jan Reedy2014-10-071-254/+232
| | | | | | | | TODOs (mostly to do after add tests), and make a few other changes.
* | use source role instead of linking to svnBenjamin Peterson2014-10-071-10/+7
| |
* | make _socket.socket weakrefable (closes #22569)Benjamin Peterson2014-10-063-3/+15
| | | | | | | | Patch from Alex Gaynor.
* | Closes #19071: "self" argument is not the module for module functions in 2.x.Georg Brandl2014-10-061-2/+3
| |
* | Closes #16155: fix a few errors in doctest output of the FAQ pages.Georg Brandl2014-10-063-6/+14
| |
* | Closes #17057: fix grammar in old-style vs new-style class docs.Georg Brandl2014-10-061-14/+14
| |
* | Issue #1686: Fix string.Template when overriding the pattern attribute.Florent Xicluna2010-09-183-9/+39
| |
* | Closes #14303: socket.makefile() does not call dup() anymore on the socket fd.Georg Brandl2014-10-061-3/+5
| |
* | Closes #10031: overhaul the "imports" section of the programming FAQ.Georg Brandl2014-10-062-16/+6
| | | | | | | | | | | | Remove the advice to never use 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 #22507: document that PyType_IsSubtype does not call __subclasscheck__.Georg Brandl2014-10-061-0/+5
| |
* | Document builtin classes as such, not functions.Georg Brandl2014-10-061-33/+36
| |
* | Update 2.7 idlelib.configHandler and reduce differences from 3.4 code.Terry Jan Reedy2014-10-061-17/+19
| |
* | Issue #3832: backport 677a9326b4d4 to 2.7 (and delete some obsolete code).Terry Jan Reedy2014-10-061-7/+7
| |
* | #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-4/+7
| | | | | | | | Original patch by Peter Saveliev.
* | Fixed issue number for issue #22470 in Misc/NEWS.Serhiy Storchaka2014-10-041-1/+1
| |
* | Fixed compilation error introduced in 3f7519f633ed (issue #22518).Serhiy Storchaka2014-10-041-2/+1
| |
* | Issue #22518: Fixed integer overflow issues in "backslashreplace" andSerhiy Storchaka2014-10-042-2/+15
| | | | | | | | "xmlcharrefreplace" 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/+14
| | | | | | | | 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.
* | - Add CVE number for Issue #21831doko@ubuntu.com2014-10-031-1/+1
| |
* | Fix a few typo/grammar issues in the multiprocessing docs.Zachary Ware2014-10-031-3/+3
| | | | | | | | Reported by Scott Hinton on docs@.
* | #8473: make doctest.testfile use universal newline mode.R David Murray2014-10-033-1/+30
| |
* | Closes #19434: fix copy-paste error in MIMENonMultipart docstring.Georg Brandl2014-10-021-1/+1
| |
* | Issue #20079: Fixed tests.Serhiy Storchaka2014-10-021-1/+1
| |
* | Issue #20079: Updated alias mapping to glibc 2.19 SUPPORTED file.Serhiy Storchaka2014-10-021-1/+11
| |
* | Issue #20076: Remove just added the sr_rs.utf8@latn alias because it isSerhiy Storchaka2014-10-021-1/+0
| | | | | | | | derived from sr_rs@latin.
* | merge headsGeorg Brandl2014-10-022-0/+8
|\ \
| * | closes #22528: add source links to symtable and compileallGeorg Brandl2014-10-022-0/+8
| | |
* | | Closes #19342: improve docstrings in grp module.Georg Brandl2014-10-021-6/+6
| | |
* | | Closes #22537: Make sphinx extensions compatible with Python 2 or 3, like in ↵Georg Brandl2014-10-024-74/+47
|/ / | | | | | | the 3.x branches
* | fix sslwrap_simple (closes #22523)Benjamin Peterson2014-10-023-11/+19
| | | | | | | | Thanks Alex Gaynor.
* | - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-022-1/+3
| |
* | - Issue #18096: Fix library order returned by python-config.doko@ubuntu.com2014-10-012-2/+5
| |
* | Issue #20076: Added non derived UTF-8 aliases to locale aliases table.Serhiy Storchaka2014-10-012-0/+9
| |
* | Issue #20079: Added locales supported in glibc 2.18 to locale alias table.Serhiy Storchaka2014-10-012-0/+101
| |
* | allow longs as indexes to group() (closes #22530)Benjamin Peterson2014-10-013-1/+8
| |
* | this test will only work on 64-bit machinesBenjamin Peterson2014-10-011-0/+1
| |
* | use Py_ssize_t for file offset and length computations in iteration (closes ↵Benjamin Peterson2014-10-013-8/+21
| | | | | | | | #22526)
* | #22512: move distutils rpm test's .rpmdb to testing tmpdir.R David Murray2014-10-011-0/+3
| | | | | | | | Patch by Francis MB.
* | Issue 22465: grammar, number agreement.Terry Jan Reedy2014-09-301-1/+1
| |
* | Remove duplicate PyLong function descriptions.Georg Brandl2014-09-301-28/+0
| |
* | Move Doc/tools/sphinxext content to Doc/tools, there is no need for the ↵Georg Brandl2014-09-3022-117/+8
| | | | | | | | nested subdirectory anymore.
* | Dont define an empty SPHINXOPTS, which overrides a definition from the ↵Georg Brandl2014-09-301-1/+0
| | | | | | | | environment.
* | Prepare sphinx extensions for 1.3.Georg Brandl2014-09-302-1/+3
| |
* | add link to pdb source (closes #22528)Benjamin Peterson2014-09-301-0/+3
| |