aboutsummaryrefslogtreecommitdiff
path: root/Objects
AgeCommit message (Expand)Author
2018-01-16bpo-32544: Speed up hasattr() and getattr() (GH-5173)INADA Naoki
2018-01-16bpo-26163: Frozenset hash improvement (#5194)Raymond Hettinger
2018-01-15bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)Victor Stinner
2018-01-14bpo-29476: Simplify set_add_entry() (#5175)Raymond Hettinger
2018-01-11bpo-29240: Ignore UTF-8 Mode in time module (#5148)Victor Stinner
2018-01-10bpo-29240: readline now ignores the UTF-8 Mode (#5145)Victor Stinner
2018-01-05bpo-32226: Make __class_getitem__ an automatic class method. (#5098)Serhiy Storchaka
2018-01-04Fix outdated comment in typeobject.c (GH-5090)Berker Peksag
2017-12-31bpo-32468: Better frame repr() (#5067)Antoine Pitrou
2017-12-21bpo-32030: Add _Py_EncodeLocaleRaw() (#4961)Victor Stinner
2017-12-21bpo-32030: Add _Py_EncodeUTF8_surrogateescape() (#4960)Victor Stinner
2017-12-20bpo-32385: Clean up the C3 MRO algorithm implementation. (#4942)Serhiy Storchaka
2017-12-20bpo-32379: Faster MRO computation for single inheritance (#4932)Antoine Pitrou
2017-12-15bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka
2017-12-14bpo-32226: Implementation of PEP 560 (core components) (#4732)Ivan Levkivskyi
2017-12-14bpo-32225: Implementation of PEP 562 (#4731)Ivan Levkivskyi
2017-12-13bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner
2017-12-12bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#...Serhiy Storchaka
2017-12-10bpo-31506: Improve the error message logic for class instantiation (GH-4740)Sanyam Khurana
2017-12-08PyLong_FromString(): fix Coverity CID 1424951 (#4738)Victor Stinner
2017-12-06bpo-32030: Add pymain_get_global_config() (#4735)Victor Stinner
2017-12-03bpo-31619: Fixed integer overflow in converting huge strings to int. (#3884)Serhiy Storchaka
2017-12-03bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)Serhiy Storchaka
2017-12-03bpo-32176: Set CO_NOFREE in the code object constructor (GH-4675)Nick Coghlan
2017-12-01bpo-32030: Cleanup "path config" code (#4663)Victor Stinner
2017-11-29bpo-32030: Rework memory allocators (#4625)Victor Stinner
2017-11-24bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)Victor Stinner
2017-11-24bpo-32096: Remove obj and mem from _PyRuntime (#4532)Victor Stinner
2017-11-23bpo-31979: Remove unused align_maxchar() function (#4527)Victor Stinner
2017-11-20bpo-32030: Add more options to _PyCoreConfig (#4485)Victor Stinner
2017-11-16bpo-32043: New "developer mode": "-X dev" option (#4413)Victor Stinner
2017-11-15bpo-32030: Split Py_Main() into subfunctions (#4399)Victor Stinner
2017-11-15bpo-30399: Get rid of trailing comma in the repr of BaseException. (#1650)Serhiy Storchaka
2017-11-13bpo-16055: Fixes incorrect error text for int('1', base=1000) (#4376)Sanyam Khurana
2017-11-13bpo-31979: Simplify transforming decimals to ASCII (#4336)Serhiy Storchaka
2017-11-11bpo-31572: Get rid of _PyObject_HasAttrId() in dict and OrderedDict. (#3728)Serhiy Storchaka
2017-11-11Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka
2017-11-08Replace KB unit with KiB (#4293)Victor Stinner
2017-11-07bpo-31626: Mark ends of the reallocated block in debug build. (#4210)Serhiy Storchaka
2017-11-05Fix miscellaneous typos (#4275)luzpaz
2017-11-02bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...stratakis
2017-10-31bpo-18835: Cleanup pymalloc (#4200)Victor Stinner
2017-10-31bpo-31626: Fixed a bug in debug memory allocator. (#3844)Serhiy Storchaka
2017-10-29bpo-20047: Make bytearray methods partition() and rpartition() rejecting (#4158)Serhiy Storchaka
2017-10-26bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)xdegaye
2017-10-25bpo-31835: Optimize also FASTCALL using __future__ (#4087)Victor Stinner
2017-10-22Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon
2017-10-20bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)Serhiy Storchaka
2017-10-08bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() al...Oren Milman
2017-10-07bpo-31655: Validate keyword names in SimpleNamespace constructor. (#3909)Serhiy Storchaka