summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* note that the hash of an arbitrary object is only derived from its address ↵Benjamin Peterson2014-04-041-1/+1
| | | | | | (closes #21154) Patch from Armin Rigo.
* Issue #21149: Improved thread-safety in logging cleanup during interpreter ↵Vinay Sajip2014-04-042-10/+15
| | | | shutdown.
* properly close files in test_zipfile (#20887)Benjamin Peterson2014-04-031-28/+46
| | | | Patch by Matti Picus.
* make sure to test UnicodeEncodeError, tooBenjamin Peterson2014-04-021-1/+1
|
* bail in unicode error's __str__ methods if the objects are not properly ↵Benjamin Peterson2014-04-023-0/+21
| | | | initialized (closes #21134)
* Issue 21125: minor wording tweak.Raymond Hettinger2014-04-021-1/+1
|
* Issue #15067: Remove reference to a rejected PEP.Zachary Ware2014-04-011-3/+0
| | | | | | Further explanation of the concept stands alone without this reference, no need to potentially confuse people by bringing up a feature that doesn't exist.
* use https docs url (#21115)Benjamin Peterson2014-03-311-2/+2
|
* add Ian BeerBenjamin Peterson2014-03-311-0/+1
|
* fix overflow detection of strop.expandtabsBenjamin Peterson2014-03-313-13/+24
|
* fix expandtabs overflow detection to be consistent and not rely on signed ↵Benjamin Peterson2014-03-301-19/+19
| | | | overflow
* add braces and fix indentationBenjamin Peterson2014-03-301-17/+18
|
* fix indentation and add bracesBenjamin Peterson2014-03-301-16/+17
|
* support CDN purgingBenjamin Peterson2014-03-301-3/+48
|
* Issue #21029: IDLE now colors print consistently as a keyword.Raymond Hettinger2014-03-302-0/+7
|
* Minor readability improvement.Raymond Hettinger2014-03-291-1/+1
|
* Issue #21093: Prevent failures of ctypes test_macholib on OS X if aNed Deily2014-03-292-2/+8
| | | | copy of libz exists in $HOME/lib or /usr/local/lib.
* Update suspicious ignore file.Georg Brandl2014-03-281-3/+2
|
* Issue #17654: Ensure IDLE menus are customized properly on OS X forNed Deily2014-03-2812-79/+125
| | | | non-framework builds and for all variants of Tk.
* Issue #6676: Ensure a meaningful exception is raised when attemptingNed Deily2014-03-274-2/+24
| | | | | | to parse more than one XML document per pyexpat xmlparser instance. (Original patches by Hirokazu Yamamoto and Amaury Forgeot d'Arc, with suggested wording by David Gutteridge)
* Issue #20939: Use www.example.com instead of www.python.org to avoid testNed Deily2014-03-274-20/+28
| | | | failures when ssl is not present.
* backport: #20145: assertRaisesRegexp now raises a TypeError on bad regex.R David Murray2014-03-254-2/+12
| | | | | Previously a non-string, non-regex second argument and no callable argument could cause the test to appear to always pass.
* Issue #21038: Cleanup test_epoll.pyVictor Stinner2014-03-251-3/+0
| | | | Remove useless test and unused variables. Initial patch by Andreas Schwab.
* Updated external link in documentation.Vinay Sajip2014-03-251-1/+1
|
* Closes #21045: make the Qt help build not look completely stupidGeorg Brandl2014-03-251-0/+8
|
* Closes #18456: Doc fix: PyDict_Update only works with dict-like objects, not ↵Georg Brandl2014-03-251-2/+5
| | | | key-value sequences. Patch by priyapappachan.
* Issue #21058: NamedTemporaryFile() closes the FD on any error, not only ↵Victor Stinner2014-03-251-1/+1
| | | | Exception
* Issue #21058: Fix a leak of file descriptor in tempfile.NamedTemporaryFile(),Victor Stinner2014-03-253-2/+27
| | | | close the file descriptor if os.fdopen() fails
* Issue #21043 - Remove CACert.org from the recommendationsDonald Stufft2014-03-241-2/+1
|
* Use "x" instead of "i" for s.index and s.count entries in sequence ops table.Zachary Ware2014-03-201-4/+4
| | | | Suggested by Bruce Esrig on docs@.
* sync with 3.4 branchBenjamin Peterson2014-03-201-49/+334
|
* add Nehal HussainBenjamin Peterson2014-03-201-0/+1
|
* Issue #20966: Fix Tkinter Resources linkZachary Ware2014-03-181-1/+1
|
* Update doc version switcher for 3.4/3.5.Georg Brandl2014-03-171-1/+2
|
* fix ctypes test alignment assumptions (closes #20946)Benjamin Peterson2014-03-164-12/+14
| | | | Patch by Andreas Schwab.
* Close #16665: improve documentation for hex(). Patch by Jessica McKellar.Antoine Pitrou2014-03-161-2/+15
|
* send people to the right editors page (#20938)Benjamin Peterson2014-03-151-1/+2
|
* Issue #20939: Fix test_geturl failure in test_urllibnet due toNed Deily2014-03-152-1/+4
| | | | new redirect of http://www.python.org/ to https://www.python.org.
* remove runtime_library_dirs for _sqlite; it isn't neededBenjamin Peterson2014-03-151-1/+0
|
* Clarify distutils’ clean command (ref #6142)Éric Araujo2014-03-132-1/+7
|
* Closes #20908: Memory leak in Reg2Py()Jesus Cea2014-03-131-1/+4
|
* weaken callback count inequality (closes #20901)Benjamin Peterson2014-03-131-1/+1
|
* remove unnecessary word (closes #19060)Benjamin Peterson2014-03-132-2/+2
| | | | Patch by Anastasia Filatova.
* Make distutils error messages more helpful (#11599).Éric Araujo2014-03-134-22/+58
| | | | | | | | | | When running external programs such as a C compiler and getting an error code, distutils only prints the program name. With this change, one can get the full command line by setting the DISTUTILS_DEBUG environment variable. This should have no compatibility issues, unless there are tools that depend on the exact format of distutils debug messages.
* Fix note markup (#16805).Éric Araujo2014-03-126-3/+13
| | | | Patch by Tshepang Lekhonkhobe, reviewed by Georg Brandl.
* use ssl.PROTOCOL_SSLv23 for maximum compatibility (closes #20896)Benjamin Peterson2014-03-121-3/+8
|
* add Sean RodmanBenjamin Peterson2014-03-121-0/+1
|
* Fix missing import in bdist_rpm (#18045)Éric Araujo2014-03-121-0/+1
|
* Restore missing part of error message (#4931)Éric Araujo2014-03-121-1/+1
|
* Avoid “error: None” messages from distutils (#4931).Éric Araujo2014-03-126-38/+20
| | | | Thanks to Amaury Forgeot d’Arc and Philip J. Eby.