summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Collapse)AuthorAgeFilesLines
* Issue #24408: Fixed AttributeError in measure() and metrics() methods ofSerhiy Storchaka2015-06-081-0/+3
| | | | tkinter.Font.
* Issue #14373: C implementation of functools.lru_cache() now can be used withSerhiy Storchaka2015-06-081-0/+3
| | | | methods.
* Issue #8232: webbrowser support incomplete on Windows. Patch by Brandon MilamSteve Dower2015-06-081-0/+3
|
* Issue #24373: Eliminate PEP 489 test refleaksNick Coghlan2015-06-041-0/+7
| | | | | | | _testmultiphase and xxlimited now use tp_traverse and tp_finalize to avoid reference leaks encountered when combining tp_dealloc with PyType_FromSpec (see issue #16690 for details)
* Issue #24369: Defend against key-changes during iteration.Eric Snow2015-06-041-0/+2
|
* Issue #24377: Fix a ref leak in OrderedDict.__repr__.Eric Snow2015-06-031-0/+2
|
* Issue #24362: Simplify the C OrderedDict fast nodes resize logic.Eric Snow2015-06-031-0/+2
|
* Issue #24368: Support keyword arguments in OrderedDict methods.Eric Snow2015-06-031-0/+2
|
* Issue #24359: Check for changed OrderedDict size during iteration.Eric Snow2015-06-021-0/+2
|
* Issue #24348: Drop superfluous increfs/decrefs.Eric Snow2015-06-021-0/+2
|
* Issue #24347: Set KeyError if PyDict_GetItemWithError returns NULL.Eric Snow2015-06-021-0/+2
|
* add Py_tp_finalize slot (closes #24345)Benjamin Peterson2015-06-011-0/+2
| | | | Patch from Petr Viktorin.
* Moved Misc/NEWS entry (issue #24270) to correct section.Serhiy Storchaka2015-06-011-3/+3
|
* Merge release engineering changes with 3.5 branch head.Larry Hastings2015-06-011-1/+13
|\
| * Post-release updates for Python 3.5.0b2.Larry Hastings2015-06-011-0/+12
| |
| * Version bump for Python 3.5.0b2.v3.5.0b2Larry Hastings2015-05-311-1/+1
| |
* | Issue #19543: Implementation of isclose as per PEP 485Tal Einat2015-05-311-0/+3
| | | | | | | | | | | | | | | | | | For details, see: PEP 0485 -- A Function for testing approximate equality Functions added: math.isclose() and cmath.isclose(). Original code by Chris Barker. Patch by Tal Einat.
* | Issue #24284: The startswith and endswith methods of the str class no longerSerhiy Storchaka2015-05-311-0/+4
|/ | | | | return True when finding the empty string and the indexes are completely out of range.
* Issue #23934: Fix inspect.signature to fail correctly for builtin types.Yury Selivanov2015-05-301-0/+3
| | | | Initial patch by James Powell.
* Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-301-0/+2
|\ | | | | | | Refactored timeit.__init__ for unified handling of stmt and setup parameters.
| * Issue #5633: Fixed timeit when the statement is a string and the setup is not.Serhiy Storchaka2015-05-301-0/+2
| |
* | Reverting my previous commit.Yury Selivanov2015-05-301-15/+0
| | | | | | | | Something went horribly wrong when I was doing `hg rebase`.
* | Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-0/+4
|\ \ | | | | | | | | | | | | PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly.
| * \ Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-0/+4
| |\ \ | | |/ | | | | | | | | | PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly.
| | * Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-301-0/+4
| | | | | | | | | | | | | | | PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly.
| * | Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-301-0/+2
| | |
* | | Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-301-0/+2
| | |
* | | merge 3.5 (#24328)Benjamin Peterson2015-05-291-0/+2
|\ \ \ | |/ /
| * | fix importing one char extension modules (closes #24328)Benjamin Peterson2015-05-291-0/+2
| | |
* | | Issue #24326: Fixed audioop.ratecv() with non-default weightB argument.Serhiy Storchaka2015-05-291-0/+3
|\ \ \ | |/ / | | | | | | Original patch by David Moore.
| * | Issue #24326: Fixed audioop.ratecv() with non-default weightB argument.Serhiy Storchaka2015-05-291-0/+3
| |\ \ | | |/ | | | | | | Original patch by David Moore.
| | * Issue #24326: Fixed audioop.ratecv() with non-default weightB argument.Serhiy Storchaka2015-05-291-0/+3
| | | | | | | | | | | | Original patch by David Moore.
* | | merge 3.5 (#11205)Benjamin Peterson2015-05-281-0/+2
|\ \ \ | |/ /
| * | in dict displays, evaluate the key before the value (closes #11205)Benjamin Peterson2015-05-281-0/+2
| | | | | | | | | | | | Patch partially by Steve Dougherty.
* | | Issue 24298: Fix signature() to properly unwrap wrappers around bound methodsYury Selivanov2015-05-281-0/+3
|\ \ \ | |/ /
| * | Issue 24298: Fix signature() to properly unwrap wrappers around bound methodsYury Selivanov2015-05-281-0/+3
| |\ \ | | |/
| | * Issue 24298: Fix signature() to properly unwrap wrappers around bound methodsYury Selivanov2015-05-281-0/+3
| | |
* | | Issue #23359: Specialize set_lookkey intoa lookup function and an insert ↵Raymond Hettinger2015-05-271-0/+3
| | | | | | | | | | | | function.
* | | Merge fix for issue #24285 from 3.5Nick Coghlan2015-05-261-1/+5
|\ \ \ | |/ /
| * | Issue #24285: fix importing extensions from packagesNick Coghlan2015-05-261-1/+5
| | |
* | | Moved Misc/NEWS entries to correct section and fix formatting.Serhiy Storchaka2015-05-261-8/+8
|\ \ \ | |/ /
| * | Moved Misc/NEWS entries to correct section and fix formatting.Serhiy Storchaka2015-05-261-8/+8
| |\ \ | | |/
| | * Moved Misc/NEWS entries to correct section and fix formatting.Serhiy Storchaka2015-05-261-7/+7
| | |
* | | (Merge 3.6) Issue #23840: tokenize.open() now closes the temporary binary fileVictor Stinner2015-05-251-0/+3
|\ \ \ | |/ / | | | | | | on error to fix a resource warning.
| * | (Merge 3.5) Issue #23840: tokenize.open() now closes the temporary binary fileVictor Stinner2015-05-251-0/+3
| |\ \ | | |/ | | | | | | on error to fix a resource warning.
| | * Issue #23840: tokenize.open() now closes the temporary binary file on error toVictor Stinner2015-05-251-0/+3
| | | | | | | | | | | | fix a resource warning.
* | | Added a section for news items for 3.6.Larry Hastings2015-05-251-0/+12
|/ /
* | Remove UTF-8 BOMs.Serhiy Storchaka2015-05-251-1/+1
|\ \ | |/
| * Remove UTF-8 BOMs.Serhiy Storchaka2015-05-251-1/+1
| |
* | Merge.Larry Hastings2015-05-241-0/+5
|\ \