summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-17Issue #19450: Update Windows builds to use SQLite 3.8.11.0.upstream-2.7lldb-master-devSteve Dower
2016-03-17Upgrade ensurepip._bundled pip to 8.1.1 and setuptools to 20.3Donald Stufft
2016-03-18Issue #17603: Check for st_blocks field without requiring fileblocks.oMartin Panter
2016-03-14Skip test_site if USER_SITE cannot be createdVictor Stinner
Issue #17758: Skip test_site if site.USER_SITE directory doesn't exist and cannot be created.
2016-03-14Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka
2016-03-13#24918: fix CSS for code blocks when a side box is present. Patch by Manvi B.Ezio Melotti
2016-03-13#25687: clarify that errors in tearDown increase the total number of ↵Ezio Melotti
reported errors. Initial patch by HyeSoo Park.
2016-03-12Issue #26513: Fixes platform module detection of Windows ServerSteve Dower
2016-03-12Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka
Tamás Bence Gedai.
2016-03-11Issue 25959: Explain in docstring that PhotoImage.zoom arguments areTerry Jan Reedy
multipliers, not final sizes. Explain y default for .zoom and .subsample. Initial patch by Serhiy Storchaka.
2016-03-11#26247: document Chrome/Chromium addition to webbrowser. Patch by Manvi B.Ezio Melotti
2016-03-11Issue #16851: Add Anna Koroliuk to Misc/ACKSVictor Stinner
2016-03-11Fix inspect.ismethod() docVictor Stinner
Closes #16851: Fix inspect.ismethod() doc, return also True if object is an unbound method. Patch written by Anna Koroliuk.
2016-03-09Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.Serhiy Storchaka
2016-03-08Issue #15068: Avoid creating a reference loop in fileinput.Serhiy Storchaka
2016-03-08Backed out changeset: e7065fc4a6c2Steve Dower
2016-03-08Force clean externals on buildbots.Steve Dower
2016-03-08Issue #26465: Update Windows builds to use OpenSSL 1.0.2g.Steve Dower
2016-03-08Issue #15068: Got rid of excessive buffering in the fileinput module.Serhiy Storchaka
The bufsize parameter is no longer used.
2016-03-08Issue #26486: Removed pickle test that doesn't work in 2.7 on 64-bit platform.Serhiy Storchaka
2016-03-08Issue #26456: Force all child threads to terminate in TestForkInThreadMartin Panter
2016-03-08Issue #26465: Update OS X installer build to use OpenSSL 1.0.2g.Ned Deily
2016-03-03properly use PyObject_CallMethod in dictview binary operations (closes #26478)Benjamin Peterson
2016-03-07Issue #26505: Fix typos in getaddrinfo license text.Ned Deily
Patch by Alex Willmer.
2016-03-06Document another recipe for itertools: all_equal(). Inspired by David Beazley.Raymond Hettinger
2016-03-06Issue #2202: Fix UnboundLocalError in ↵Berker Peksag
AbstractDigestAuthHandler.get_algorithm_impls Raise ValueError if algorithm is not MD5 or SHA. Initial patch by Mathieu Dupuy.
2016-03-06Issue #26167: Backported copy tests.Serhiy Storchaka
2016-03-06Issue #26475: Fixed debugging output for regular expressions with the (?x) flag.Serhiy Storchaka
2016-03-06Issue #26486: Backported some pickle tests from 3.x.Serhiy Storchaka
2016-03-05Issue #26485: Fix Sphinx warning in Doc/license.rstBerker Peksag
Patch by Julien.
2016-03-04issue26484 - fix the broken table in the doc about len().Gregory P. Smith
2016-03-03Issue #26476: Fixed compilation error when use PyErr_BadInternalCall() in C++.Serhiy Storchaka
Patch by Jeroen Demeyer.
2016-03-02Issue #26246: Set initial value of the hidden attr when creating copy button.Berker Peksag
Patch by Liang-Bo Wang.
2016-02-29Issue #26385: Cleanup NamedTemporaryFile if fdopen() fails, by SilentGhostMartin Panter
2016-02-28Fix typo.Georg Brandl
2016-02-27Issue 13573: Document that csv.writer uses str() for floats instead of repr().Raymond Hettinger
2016-02-28Issue #22836: Keep exception reports sensible despite errorsMartin Panter
2016-02-27#26246: update copybutton.js after JQuery update. Patch by Liang-Bo Wang.Ezio Melotti
2016-02-03Issue #24421: Compile _math.c separately to avoid race conditionMartin Panter
2016-02-25Fix rstlint to also look for indented comments that should be directives.Georg Brandl
2016-02-25Issue #25801: Fixed resource warnings in test_zipfile64.Serhiy Storchaka
Patch by SilentGhost.
2016-02-25Issue #25136: Add reference to 'xcode-select --install' to Mac README.Ned Deily
2016-02-25Change OS X installer builds targeted for 10.10 and above to buildNed Deily
and link with a private copy of OpenSSL, like installers targeted for 10.5 already do, since Apple has deprecated use of the system OpenSSL and removed its header files from the Xcode 7 SDK. Note that this configuration is not currently used to build any python.org-supplied installers and that the private copy of OpenSSL requires its own root certificates.
2016-02-25Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries.Ned Deily
As of Xcode 7, SDKs for Apple platforms now include textual-format stub libraries whose file names have a .tbd extension rather than the standard OS X .dylib extension. The Apple compiler tool chain handles these stub libraries transparently and the installed system shared libraries are still .dylibs. However, the new stub libraries cause problems for third-party programs that support building with Apple SDKs and make build-time decisions based on the presence or paths of system-supplied shared libraries in the SDK. In particular, building Python itself with an SDK fails to find system-supplied libraries during setup.py's build of standard library extension modules. The solution is to have find_library_file() in Distutils search for .tbd files, along with the existing types (.a, .so, and .dylib). Patch by Tim Smith.
2016-02-24Issue #5824: Fix DatagramRequestHandler tests by binding the client socketMartin Panter
2016-02-23Issue #22088: Clarify base-64 alphabets and which characters are discardedMartin Panter
* There are only two base-64 alphabets defined by the RFCs, not three * Due to the internal translation, plus (+) and slash (/) are never discarded * standard_ and urlsafe_b64decode() discard characters as well
2016-02-23Issue #26406: Avoid unnecessary serialization of getaddrinfo(3) calls onNed Deily
current versions of OpenBSD and NetBSD. Patch by A. Jesse Jiryu Davis.
2016-02-23Issue #26417: Prevent spurious errors and incorrect defaults whenNed Deily
installing IDLE 2.7 on OS X: default configuration settings are no longer installed from OS X specific copies.
2016-02-22Issue #26268: Update Windows builds to use OpenSSL 1.0.2fZachary Ware
2016-02-22Issue #26261: Clarify NamedTemporaryFile name attribute vs file.nameMartin Panter