summaryrefslogtreecommitdiff
path: root/Misc/NEWS.d/next/Core and Builtins
Commit message (Expand)AuthorAgeFilesLines
* 3.7.4 finalv3.7.4Ned Deily2019-07-081-3/+0
* [3.7] bpo-37500: update Misc/NEWS entries to mention revertNed Deily2019-07-081-0/+3
* 3.7.4rc2v3.7.4rc2Ned Deily2019-07-021-2/+0
* [3.7] bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304) ...Miss Islington (bot)2019-07-011-0/+2
* 3.7.4rc1v3.7.4rc1Ned Deily2019-06-1827-50/+0
* [3.7] bpo-37269: Correctly optimise conditionals with constant booleans (GH-1...Pablo Galindo2019-06-141-0/+2
* [3.7] bpo-37219: Remove erroneous optimization for differencing an empty set ...Raymond Hettinger2019-06-111-0/+1
* [3.7] bpo-27987: align PyGC_Head to alignof(long double) (GH-13335) (GH-13581)Inada Naoki2019-06-021-0/+2
* bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)Miss Islington (bot)2019-05-281-0/+2
* [3.7] bpo-28866: No type cache for types with specialized mro, invalidation i...Miss Islington (bot)2019-05-261-0/+2
* BPO-27639: Correct return type for UserList slicing operation (#13203)Michael Blahay2019-05-261-0/+2
* bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850)Miss Islington (bot)2019-05-251-0/+3
* [3.7] Revert "align PyGC_Head to alignof(long double) (GH-13335)" (GH-13569)Gregory P. Smith2019-05-251-2/+0
* bpo-27987: align PyGC_Head to alignof(long double) (GH-13335)Inada Naoki2019-05-251-0/+2
* bpo-36829: Enhance PyErr_WriteUnraisable() (GH-13487)Victor Stinner2019-05-221-0/+4
* bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381) (GH-13493)Jeroen Demeyer2019-05-221-0/+2
* [3.7] bpo-36035: fix Path.rglob for broken links (GH-11988) (GH-13469)Miss Islington (bot)2019-05-211-0/+1
* bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...Miss Islington (bot)2019-05-171-0/+3
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Miss Islington (bot)2019-05-171-0/+1
* [3.7] bpo-34408: Prevent a null pointer dereference and resource leakage in `...Pablo Galindo2019-05-101-0/+1
* bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505)Miss Islington (bot)2019-04-231-0/+2
* bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852) (GH-12863)Miss Islington (bot)2019-04-171-0/+2
* [3.7] bpo-36440: include node names in ParserError messages, instead of numer...Pablo Galindo2019-04-031-0/+2
* bpo-36504: Fix signed integer overflow in _ctypes.c's PyCArrayType_new(). (GH...Miss Islington (bot)2019-04-031-0/+1
* bpo-20844: open script file with "rb" mode (GH-12616)Inada Naoki2019-04-011-0/+2
* bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603) (GH-12627)Miss Islington (bot)2019-03-301-0/+2
* bpo-36459: Fix a possible double PyMem_FREE() due to tokenizer.c's tok_nextc(...Miss Islington (bot)2019-03-281-0/+1
* [3.7] Fix NEWS entry with incorrect bpo number (GH-12600)Ned Deily2019-03-281-0/+0
* bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)Miss Islington (bot)2019-03-261-0/+1
* bpo-36430: Fix a possible reference leak in itertools.count(). (GH-12551)Miss Islington (bot)2019-03-251-0/+1
* bpo-36421: Fix a possible double decref in _ctypes.c's PyCArrayType_new(). (G...Miss Islington (bot)2019-03-251-0/+1
* bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209) GH-12...Miss Islington (bot)2019-03-251-0/+2
* bpo-36256: Fix bug in parsermodule when parsing if statements (GH-12488)Miss Islington (bot)2019-03-211-0/+2
* bpo-36236: Handle removed cwd at Python init (GH-12450)Victor Stinner2019-03-201-0/+2
* bpo-36262: Fix _Py_dg_strtod() memory leak (goto undfl) (GH-12276) (GH-12331)Victor Stinner2019-03-141-0/+3
* 3.7.3rc1v3.7.3rc1Ned Deily2019-03-1212-25/+0
* Minor edits to news entries for 3.7.3 (GH-12292)Ned Deily2019-03-121-1/+1
* bpo-33989: Ensure that ms.key_compare is always initialized in list_sort_impl...Miss Islington (bot)2019-02-211-0/+2
* bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-...Miss Islington (bot)2019-02-191-0/+3
* bpo-35942: Improve the error message if __fspath__ returns invalid types in p...Miss Islington (bot)2019-02-181-0/+3
* bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857)Miss Islington (bot)2019-02-171-0/+2
* closes bpo-35991: Fix a potential double free in Modules/_randommodule.c. (GH...Miss Islington (bot)2019-02-141-0/+1
* bpo-35961: Fix a crash in slice_richcompare() (GH-11830)Miss Islington (bot)2019-02-131-0/+2
* bpo-35720: Fixing a memory leak in pymain_parse_cmdline_impl() (GH-11528)Miss Islington (bot)2019-01-221-0/+1
* bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_Fro...Miss Islington (bot)2019-01-121-0/+3
* bpo-35560: Remove assertion from format(float, "n") (GH-11288)Miss Islington (bot)2019-01-071-0/+3
* closes bpo-35623: Fix integer overflow when sorting large lists (GH-11380)Miss Islington (bot)2019-01-011-0/+1
* [3.7] bpo-35214: Annotate posix calls for clang MSan. (GH-11389) (GH-11391)Gregory P. Smith2018-12-301-1/+1
* bpo-35214: Skip test_io tests that'd cause a huge malloc under msan (GH-11385)Miss Islington (bot)2018-12-301-1/+1
* bpo-35214: MSan workarounds for socket, time, and test_faulthandler. (GH-1137...Miss Islington (bot)2018-12-301-0/+2