summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23098: 64-bit dev_t is now supported in the os module.Serhiy Storchaka2015-01-182-12/+44
|
* Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-186-11/+9
| | | | Patch by Al Sweigart.
* Closes #23160: Respect the environment variable SVNROOT in ↵Steve Dower2015-01-151-8/+10
| | | | external-common.bat (patch by anselm.kruis)
* Closes #23244: fix typo. Thanks Mayank Tripathi for the patch.Georg Brandl2015-01-151-1/+1
|
* Issue20467: clarify __init__'s roleEthan Furman2015-01-151-4/+8
|
* fix parsing reST with code or code-block directives (closes #23063)Benjamin Peterson2015-01-153-4/+38
| | | | Patch by Marc Abramowitz.
* Closes #23181: codepoint -> code pointGeorg Brandl2015-01-145-12/+12
|
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-1310-9/+10
| | | | Patch by Karan Goel.
* Bump setuptools to 11.3.1Donald Stufft2015-01-112-1/+1
|
* Issue #22952: improve multiprocessing doc introduction and defer notes until ↵Antoine Pitrou2015-01-111-33/+54
| | | | | | appropriate. Patch by Davin Potts.
* Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse ↵Mark Dickinson2015-01-113-10/+10
| | | | hyperbolic sine' (etc.). Remove meaningless reference to radians.
* Issue #23212: 2.7-specific OS X installer updatesNed Deily2015-01-093-2/+4
|
* Issue #23212: Update OS X installer build OpenSSL to 1.0.1k.Ned Deily2015-01-092-10/+12
| | | | (currently only used for builds with <= 10.5 deployment targets)
* Issue #23184: delete unused idlelib file.Terry Jan Reedy2015-01-081-31/+0
|
* Silence a Sphinx warning in ftplib.rst.Berker Peksag2015-01-061-1/+1
| | | | | ftplib.rst:61: WARNING: Block quote ends without a blank line; unexpect ed unindent.
* Fix a markup error in the argparse documentation.Berker Peksag2015-01-061-2/+2
| | | | Reported by Jason Sachs on docs@.
* Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-069-7/+78
| | | | | availability of the function is checked during the compilation. Patch written by Bernard Spil.
* Issue #23168: skip sys.stdin.seek() test if stdin is not a TTYVictor Stinner2015-01-061-8/+14
|
* Clarified documentation for logging exception function/method.Vinay Sajip2015-01-061-4/+6
|
* emphasize that cffi is better than extension modules for portabilityBenjamin Peterson2015-01-051-5/+10
|
* allow a SSLContext to be given to ftplib.FTP_TLSBenjamin Peterson2015-01-044-37/+120
|
* make SSLv23 the default version in ftplib (closes #23111)Benjamin Peterson2015-01-043-3/+5
|
* Update bundled pip and setuptools to 6.0.6 and 11.0Donald Stufft2015-01-033-2/+2
|
* Add missing URL link to Modernize docs.Ned Deily2015-01-031-1/+1
|
* Update copyright dates in OS X installer.Ned Deily2015-01-015-16/+12
|
* update for copyright for 2015Benjamin Peterson2015-01-016-7/+7
|
* delete old ftpmirror script, which now has security bugs (closes #23130)Benjamin Peterson2014-12-301-400/+0
|
* Issue #23125: Update nose project page link.Berker Peksag2014-12-281-1/+1
| | | | Reported by Damien Marié.
* use getentropy when available (backport of 75ede5bec8db) (closes #23115)Benjamin Peterson2014-12-266-7/+51
|
* fix behavior of trailing slash redirection when a query string is involved ↵Benjamin Peterson2014-12-263-2/+16
| | | | (closes #23112)
* improve incorrect French (#23109)Benjamin Peterson2014-12-241-2/+2
| | | | Following suggestions from Clément.
* Upgrade pip to 6.0.2 and setuptools to 8.2.1Donald Stufft2014-12-234-2/+2
|
* allow more operations to work on detached streams (closes #23093)Benjamin Peterson2014-12-225-40/+58
| | | | Patch by Martin Panter.
* explicitly close files (closes #23090)Benjamin Peterson2014-12-201-2/+4
| | | | Patch by Brian Kearns.
* Issue #23071: Added missing names to codecs.__all__. Patch by Martin Panter.Serhiy Storchaka2014-12-203-1/+31
|
* Issue #23070: Fix a comment in the tutorial.Berker Peksag2014-12-171-1/+1
| | | | | | "Python" has 6 characters, not 7. Reported by Ross Burnett.
* Issue #20577: move configuration of FormatParagraph extension to new extensionTerry Jan Reedy2014-12-165-24/+10
| | | | configuration dialog. Patch by Tal Einat.
* remove extra ssl imports (closes #23053)Benjamin Peterson2014-12-151-2/+0
| | | | Patch from Jan Matejek.
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-1515-228/+253
|
* Issue #23015: Improved testing of the uuid module.Serhiy Storchaka2014-12-151-112/+98
|
* use autoconf macro to check for pkg-config (closes #15506)Benjamin Peterson2014-12-153-3/+38
|
* pop the loop block even for infinite while loops (closes #23048)Benjamin Peterson2014-12-133-3/+15
|
* Issue #23047: Fix typo in pyporting.rst.Berker Peksag2014-12-131-1/+1
| | | | Patch by Chaitanya agrawal.
* Use rtf format files for legacy OS X installer builds.Ned Deily2014-12-135-74/+10
| | | | (Backport from 3.4 changes for Issue #17128.)
* Backport of porting HOWTOBrett Cannon2014-12-121-583/+358
|
* remove reference to dead irc channel (closes #23038)Benjamin Peterson2014-12-121-3/+1
|
* Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64,Victor Stinner2014-12-121-3/+5
| | | | when Python is configure with --with-tsc. Patch written by Christian Heimes.
* Issue 23005: Fix typosRaymond Hettinger2014-12-121-2/+2
|
* Issue #23032: Fix installer build failures on OS X 10.4 TigerNed Deily2014-12-112-0/+13
| | | | by disabling assembly code in the OpenSSL build.
* Issue 22823: Use set literal in idlelib.Terry Jan Reedy2014-12-111-2/+2
|