summaryrefslogtreecommitdiff
path: root/Objects/object.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993)Miss Islington (bot)2019-04-281-1/+3
* [3.7] bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (G...Victor Stinner2019-04-111-13/+11
* [3.7] bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) (GH-10662)Victor Stinner2018-11-221-23/+60
* bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)Miss Islington (bot)2018-10-061-2/+3
* closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800)Miss Islington (bot)2018-02-211-1/+2
* bpo-32571: Fix reading uninitialized memory (GH-5332)INADA Naoki2018-01-261-0/+5
* bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...Serhiy Storchaka2018-01-251-27/+49
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-221-0/+1
* bpo-32544: Speed up hasattr() and getattr() (GH-5173)INADA Naoki2018-01-161-6/+50
* bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)Serhiy Storchaka2017-12-031-0/+5
* bpo-32030: Add more options to _PyCoreConfig (#4485)Victor Stinner2017-11-201-20/+3
* bpo-30860: Fix a refleak. (#3567)Eric Snow2017-09-141-12/+15
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-131-15/+12
* bpo-30860: Fix a refleak. (#3506)Eric Snow2017-09-111-12/+15
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-15/+8
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-6/+0
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-051-7/+15
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-051-15/+7
* bpo-30341: Improve _PyTrash_thread_destroy_chain() a little bit (#1545)Xiang Zhang2017-05-131-2/+15
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-1/+1
* bpo-29509: skip redundant intern (GH-197)INADA Naoki2017-02-211-1/+1
* Issue #29263: LOAD_METHOD support for C methodsINADA Naoki2017-02-031-2/+2
* Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()Serhiy Storchaka2017-01-221-4/+4
* Rephrase !PyErr_Occurred() comment: may=>canVictor Stinner2017-01-181-2/+2
* Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-2/+2
* Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.Yury Selivanov2016-12-131-1/+89
* Use _PyObject_CallNoArg()Victor Stinner2016-12-061-2/+2
* Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-2/+2
* Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-2/+2
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
* merge 3.5Benjamin Peterson2016-11-061-0/+9
|\
| * make sure dict view types are initializedBenjamin Peterson2016-11-061-0/+9
* | Implement compact dictVictor Stinner2016-09-071-6/+0
* | Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,Serhiy Storchaka2016-07-031-0/+9
* | Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-291-1/+1
|\ \ | |/
| * Issue #27125: Fix various errors like “will [be] inherited”Martin Panter2016-05-291-1/+1
* | Issue #26745: Removed redundant code in _PyObject_GenericSetAttrWithDict.Serhiy Storchaka2016-04-171-30/+21
* | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
|\ \ | |/
* | Issue #20440: Cleaning up the code by using Py_SETREF.Serhiy Storchaka2016-01-051-5/+3
* | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-1/+1
* | Issue #25210: Change error message of do_richcompare()Victor Stinner2015-10-141-3/+2
|/
* Merge typo fixes from 3.4 into 3.5Martin Panter2015-10-071-1/+1
|\
| * Various minor typos in documentation and commentsMartin Panter2015-10-071-1/+1
* | Issue #24400: Introduce a distinct type for 'async def' coroutines.Yury Selivanov2015-06-221-0/+6
* | Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-291-0/+15
* | Issue #21293: Remove unnecessary "capsule hack".Larry Hastings2015-03-021-3/+0
* | Issue #22869: Split pythonrun into two modulesNick Coghlan2014-11-201-0/+16
* | Initialize base types before child typesVictor Stinner2014-06-021-6/+6
|/
* Issue #21073: explain why Py_ReprEnter() allows for a missing thread state.Antoine Pitrou2014-03-311-0/+2
* Close #20500: Don't trigger PyObject_Str assertion at shutdownNick Coghlan2014-02-091-1/+1