Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
c11183cdcff6af13c4339fdcce84ab63f7930ddc
/
Objects
/
object.c
c11183c
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359)
by Eric Snow
· 6 years ago
4d61e6e
Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159)
by Victor Stinner
· 6 years ago
bcfa450
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (#12003)
by Eric Snow
· 6 years ago
a24107b
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
by Serhiy Storchaka
· 6 years ago
ab67281
bpo-35713: Reorganize sys module initialization (GH-11658)
by Victor Stinner
· 6 years ago
6d43f6f
bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)
by Victor Stinner
· 6 years ago
7211d30
Remove an unused variable after bpo-35444. (GH-11117)
by Serhiy Storchaka
· 6 years ago
bb86bf4
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047)
by Serhiy Storchaka
· 6 years ago
2cf5d32
bpo-9263: Fix _PyObject_Dump() for freed object (#10661)
by Victor Stinner
· 6 years ago
f1d002c
bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642)
by Victor Stinner
· 6 years ago
621cebe
bpo-35081: Rename internal headers (GH-10275)
by Victor Stinner
· 6 years ago
6531bf6
bpo-33462: Add __reversed__ to dict and dict views (GH-6827)
by Rémi Lapeyre
· 6 years ago
50b4857
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
by Victor Stinner
· 6 years ago
27e2d1f
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
by Victor Stinner
· 6 years ago
3c09dca
bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223)
by Victor Stinner
· 6 years ago
49c75a8
bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152)
by Pablo Galindo
· 6 years ago
2470204
bpo-9263: Use _PyObject_ASSERT() in object.c (GH-10110)
by Victor Stinner
· 6 years ago
3ec9af7
bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109)
by Victor Stinner
· 6 years ago
626bff8
bpo-9263: Dump Python object on GC assertion failure (GH-10062)
by Victor Stinner
· 6 years ago
18618e65
bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093)
by Victor Stinner
· 6 years ago
9e00e80
bpo-35053: Enhance tracemalloc to trace free lists (GH-10063)
by Victor Stinner
· 6 years ago
82af0b6
bpo-9263: _PyObject_Dump() detects freed memory (GH-10061)
by Victor Stinner
· 6 years ago
ae62f01
bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)
by Zackery Spytz
· 6 years ago
e502451
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
by Benjamin Peterson
· 6 years ago
caba55b
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
by Victor Stinner
· 6 years ago
5ac9e6e
bpo-33597: Reduce PyGC_Head size (GH-7043)
by INADA Naoki
· 6 years ago
d852142
Replace _PyGC_REFS macros with higher level macros (GH-6852)
by INADA Naoki
· 6 years ago
55edd0c
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
by Siddhesh Poyarekar
· 7 years ago
745dc65
closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800)
by Eddie Elizondo
· 7 years ago
e76daeb
bpo-32571: Fix reading uninitialized memory (GH-5332)
by INADA Naoki
· 7 years ago
f320be7
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
by Serhiy Storchaka
· 7 years ago
f23746a
bpo-32436: Implement PEP 567 (#5027)
by Yury Selivanov
· 7 years ago
378edee
bpo-32544: Speed up hasattr() and getattr() (GH-5173)
by INADA Naoki
· 7 years ago
1fb72d2
bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570)
by Serhiy Storchaka
· 7 years ago
25420fe
bpo-32030: Add more options to _PyCoreConfig (#4485)
by Victor Stinner
· 7 years ago
dae0276
bpo-30860: Fix a refleak. (#3567)
by Eric Snow
· 7 years ago
93c92f7
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
by Eric Snow
· 7 years ago
8728018
bpo-30860: Fix a refleak. (#3506)
by Eric Snow
· 7 years ago
2ebc5ce
bpo-30860: Consolidate stateful runtime globals. (#3397)
by Eric Snow
· 7 years ago
a6a4dc8
bpo-31370: Remove support for threads-less builds (#3385)
by Antoine Pitrou
· 7 years ago
05351c1
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
by Eric Snow
· 7 years ago
76d5abc
bpo-30860: Consolidate stateful runtime globals. (#2594)
by Eric Snow
· 7 years ago
a66f9c6
bpo-30341: Improve _PyTrash_thread_destroy_chain() a little bit (#1545)
by Xiang Zhang
· 7 years ago
55fe1ae
bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)
by Serhiy Storchaka
· 8 years ago
3e8d6cb
bpo-29509: skip redundant intern (GH-197)
by INADA Naoki
· 8 years ago
5566bbb
Issue #29263: LOAD_METHOD support for C methods
by INADA Naoki
· 8 years ago
2a404b6
Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()
by Serhiy Storchaka
· 8 years ago
a8cb515
Rephrase !PyErr_Occurred() comment: may=>can
by Victor Stinner
· 8 years ago
5ab81d7
Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict.
by Serhiy Storchaka
· 8 years ago
f239213
Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes.
by Yury Selivanov
· 8 years ago
f17c3de
Use _PyObject_CallNoArg()
by Victor Stinner
· 8 years ago
de4ae3d
Backed out changeset b9c9691c72c5
by Victor Stinner
· 8 years ago
27580c1
Replace PyObject_CallFunctionObjArgs() with fastcall
by Victor Stinner
· 8 years ago
0651583
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
by Serhiy Storchaka
· 8 years ago
3bd7900
merge 3.5
by Benjamin Peterson
· 8 years ago
db87c99
make sure dict view types are initialized
by Benjamin Peterson
· 8 years ago
742da04
Implement compact dict
by Victor Stinner
· 8 years ago
7e160ce
Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,
by Serhiy Storchaka
· 8 years ago
e501a93
Issue #27125: Merge typo fixes from 3.5
by Martin Panter
· 8 years ago
8d56c02
Issue #27125: Fix various errors like “will [be] inherited”
by Martin Panter
· 8 years ago
55c861f
Issue #26745: Removed redundant code in _PyObject_GenericSetAttrWithDict.
by Serhiy Storchaka
· 9 years ago
ec39756
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
by Serhiy Storchaka
· 9 years ago
576f132
Issue #20440: Cleaning up the code by using Py_SETREF.
by Serhiy Storchaka
· 9 years ago
2d06e84
Issue #25923: Added the const qualifier to static constant arrays.
by Serhiy Storchaka
· 9 years ago
91108f0
Issue #25210: Change error message of do_richcompare()
by Victor Stinner
· 9 years ago
3f930dc
Merge typo fixes from 3.4 into 3.5
by Martin Panter
· 9 years ago
9955a37
Various minor typos in documentation and comments
by Martin Panter
· 9 years ago
5376ba9
Issue #24400: Introduce a distinct type for 'async def' coroutines.
by Yury Selivanov
· 9 years ago
96c6af9
Issue #16991: Add a C implementation of collections.OrderedDict.
by Eric Snow
· 9 years ago
42fc0eb
Issue #21293: Remove unnecessary "capsule hack".
by Larry Hastings
· 10 years ago
d600951
Issue #22869: Split pythonrun into two modules
by Nick Coghlan
· 10 years ago
5a1bb4e
Initialize base types before child types
by Victor Stinner
· 10 years ago
04d17d3
Issue #21073: explain why Py_ReprEnter() allows for a missing thread state.
by Antoine Pitrou
· 11 years ago
d979e43
Close #20500: Don't trigger PyObject_Str assertion at shutdown
by Nick Coghlan
· 11 years ago
2ccf8e9
Issue #6477: Merge with 3.3.
by Alexandre Vassalotti
· 11 years ago
65846c6
Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private.
by Alexandre Vassalotti
· 11 years ago
3c23e7a
Issue #6477: Merge with 3.3.
by Alexandre Vassalotti
· 11 years ago
19b6fa6
Issue #6477: Added support for pickling the types of built-in singletons.
by Alexandre Vassalotti
· 11 years ago
c49477b
Make Ellipsis and NotImplemented picklable through the reduce protocol.
by Alexandre Vassalotti
· 11 years ago
985ecdc
ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.
by Christian Heimes
· 11 years ago
bd303c1
Issue #19512, #19515: remove shared identifiers, move identifiers where they
by Victor Stinner
· 11 years ago
53e9ec4
Issue #19512: Use the new _PyId_builtins identifier
by Victor Stinner
· 11 years ago
7a07e45
Issue #19512: Py_ReprEnter() and Py_ReprLeave() now use an identifier for the
by Victor Stinner
· 11 years ago
41bb43a
Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
by Victor Stinner
· 11 years ago
8f8839e
Remove the freelist scheme for setobjects.
by Raymond Hettinger
· 11 years ago
33824f6
Restore changeset 5bd9db528aed (issue #18408)
by Victor Stinner
· 11 years ago
e513210
Issue #18408: _PyObject_Dump() now saves/restores the current exception
by Victor Stinner
· 11 years ago
9d95254
Issue #18772: fix the gdb plugin after the set implementation changes
by Antoine Pitrou
· 11 years ago
9154193
Back out 5bd9db528aed (issue #18408). It caused unsolved buildbot failures.
by Antoine Pitrou
· 11 years ago
9ed5f27
Issue #18722: Remove uses of the "register" keyword in C code.
by Antoine Pitrou
· 11 years ago
796564c
Issue #18112: PEP 442 implementation (safe object finalization).
by Antoine Pitrou
· 11 years ago
8e47832
Issue #18408: PyObject_Str(), PyObject_Repr() and type_call() now fail with an
by Victor Stinner
· 11 years ago
e901d1f
Issue #18408: Fix Py_ReprEnter(), handle PyList_Append() failure
by Victor Stinner
· 11 years ago
1b63493
Issue #18408: Py_ReprLeave() now saves/restores the current exception,
by Victor Stinner
· 11 years ago
0507bf5
Issue #3329: Implement the PEP 445
by Victor Stinner
· 11 years ago
36f01ad
Revert changeset 6661a8154eb3: Issue #3329: Add new APIs to customize memory allocators
by Victor Stinner
· 11 years ago
4d70562
Issue #3329: Add new APIs to customize memory allocators
by Victor Stinner
· 11 years ago
af03757
Optimize ascii(str): don't encode/decode repr if repr is already ASCII
by Victor Stinner
· 12 years ago
42124a7
initialize map/filter/zip in _PyBuiltin_Init rather than the catch-all function
by Benjamin Peterson
· 12 years ago
7ff2094
merge 3.3 (#16369)
by Benjamin Peterson
· 12 years ago
Next »