summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
Commit message (Expand)AuthorAgeFilesLines
* closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439)Zackery Spytz2018-08-151-0/+1
* bpo-34151: Improve performance of some list operations (GH-8332)Sergey Fedoseev2018-08-111-0/+2
* closes bpo-34377: Update Valgrind suppressions. (GH-8729)Paul Price2018-08-111-0/+3
* closes bpo-34353: Add sockets to stat.filemode fallback python implementation...GPery2018-08-101-0/+2
* bpo-34113: Fix a crash when using LLTRACE is on (GH-8517)costypetrisor2018-07-311-0/+2
* bpo-1617161: Make the hash and equality of methods not depending on the value...Serhiy Storchaka2018-07-311-0/+7
* bpo-34170: Enhance _PyCoreConfig_Read() (GH-8468)Victor Stinner2018-07-261-0/+2
* bpo-34149: Behavior of the min/max with key=None (GH-8328)Alexander Marshalov2018-07-241-0/+1
* bpo-34126: Fix crashes while profiling invalid calls. (GH-8300)jdemeyer2018-07-211-0/+2
* bpo-34141: Optimized pickling simple non-recursive values. (GH-8318)Serhiy Storchaka2018-07-181-0/+1
* bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exce...Zackery Spytz2018-07-171-0/+3
* bpo-24618: Add a check in the code constructor. (GH-8283)Serhiy Storchaka2018-07-161-0/+2
* bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)INADA Naoki2018-07-141-0/+1
* bpo-34080: Fix a memory leak in the compiler. (GH-8222)Serhiy Storchaka2018-07-111-0/+2
* bpo-33597: Reduce PyGC_Head size (GH-7043)INADA Naoki2018-07-101-0/+1
* bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH...Serhiy Storchaka2018-07-091-0/+2
* bpo-33305: Improve SyntaxError for invalid numerical literals. (GH-6517)Serhiy Storchaka2018-07-091-0/+1
* bpo-34042: Fix dict.copy() to maintain correct total refcount (GH-8119)Yury Selivanov2018-07-061-0/+2
* bpo-33418: Add tp_clear for function object (GH-8058)INADA Naoki2018-07-041-0/+2
* bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918)Zackery Spytz2018-07-031-0/+2
* bpo-25862: Fix assertion failures in io.TextIOWrapper.tell(). (GH-3918)Zackery Spytz2018-06-291-0/+2
* bpo-33985: Implement ContextVar.name attribute. (GH-7980)Yury Selivanov2018-06-281-0/+1
* bpo-33956: update vendored expat to 2.2.5 (GH-7925)Benjamin Peterson2018-06-271-0/+1
* bpo-33451: Close pyc files before calling PyEval_EvalCode() (GH-7884)Zackery Spytz2018-06-241-0/+1
* bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (...Carl Meyer2018-06-161-0/+3
* bpo-33824, bpo-32030: Fix pymain_read_conf() (GH-7712)Victor Stinner2018-06-151-0/+2
* Clean up after bpo-33738. (GH-7627)Serhiy Storchaka2018-06-111-2/+2
* bpo-33738: Address review comments in GH #7477 (GH-7585)Christian Tismer2018-06-101-1/+2
* bpo-33738: Fix macros which contradict PEP 384 (GH-7477)Christian Tismer2018-06-091-0/+3
* bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...Yury Selivanov2018-06-081-0/+1
* bpo-33803: Fix a crash in hamt.c (#7504)Yury Selivanov2018-06-081-0/+2
* bpo-31849: Fix warning in pyhash.c (GH-6799)A. Jesse Jiryu Davis2018-06-041-0/+1
* bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146)pkerling2018-06-011-0/+2
* bpo-33706: Fix pymain_parse_cmdline_impl() (GH-7283)Victor Stinner2018-05-311-0/+2
* bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)Serhiy Storchaka2018-05-291-0/+5
* bpo-33622: Fix issues with handling errors in the GC. (GH-7078)Serhiy Storchaka2018-05-241-0/+4
* bpo-23722: Raise a RuntimeError for absent __classcell__. (GH-6931)Serhiy Storchaka2018-05-201-0/+4
* bpo-33475: Fix and improve converting annotations to strings. (GH-6774)Serhiy Storchaka2018-05-171-0/+2
* bpo-33509: Fix _warnings for module_globals=None (#6833)Victor Stinner2018-05-151-0/+2
* bpo-28055: Fix unaligned accesses in siphash24(). (GH-6123)Rolf Eike Beer2018-05-131-0/+1
* bpo-21983: Fix a crash in ctypes.cast() when passed a ctypes structured data ...Oren Milman2018-05-091-0/+2
* bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)lekma2018-05-021-0/+1
* bpo-33363: raise SyntaxError for async for/with outside async functions (#6616)Zsolt Dollenstein2018-04-271-0/+2
* bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6...Pablo Galindo2018-04-251-0/+2
* bpo-33312: Fix clang ubsan out of bounds warnings in dict. (GH-6537)Gregory P. Smith2018-04-201-0/+3
* bpo-33205: dict: Change GROWTH_RATE to `used*3` (GH-6350)INADA Naoki2018-04-171-0/+3
* bpo-33270: Intern names for all anonymous code objects (#6472)Zackery Spytz2018-04-151-0/+1
* bpo-33176: Add a toreadonly() method to memoryviews. (GH-6466)Antoine Pitrou2018-04-141-0/+1
* bpo-33231: Fix potential leak in normalizestring() (GH-6386)INADA Naoki2018-04-061-0/+1
* bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)INADA Naoki2018-04-031-0/+2