index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
typeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...
Mark Shannon
2021-12-07
1
-60/+53
*
bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...
Mark Shannon
2021-11-23
1
-1/+1
*
bpo-45392: Update the docstring of the 'type' built-in (GH-29439)
Mark Dickinson
2021-11-06
1
-3/+1
*
bpo-45697: Use PyObject_TypeCheck in type_call (GH-29392)
Itamar Ostricher
2021-11-04
1
-1/+1
*
bpo-45315: PyType_FromSpec: Copy spec->name and have the type own the memory ...
Petr Viktorin
2021-10-21
1
-15/+36
*
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon
2021-10-13
1
-32/+67
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-1/+1
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-5/+5
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-5/+5
*
bpo-45198: __set_name__ documentation not clear about its usage with non-desc...
Raymond Hettinger
2021-09-18
1
-1/+2
*
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon
2021-08-25
1
-1/+1
*
bpo-42035: Add PyType_GetQualName() to get a type's qualified name. (GH-27551)
Hai Shi
2021-08-17
1
-0/+6
*
bpo-44914: Maintain invariants of type version tags. (GH-27773)
Mark Shannon
2021-08-16
1
-27/+13
*
bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)
Mark Shannon
2021-08-04
1
-1/+9
*
bpo-42035: Add a PyType_GetName() to get type's short name. (GH-23903)
Hai Shi
2021-07-29
1
-0/+6
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
1
-3/+5
*
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...
Petr Viktorin
2021-07-23
1
-21/+2
*
bpo-44654: Refactor and clean up the union type implementation (GH-27196)
Serhiy Storchaka
2021-07-17
1
-1/+1
*
bpo-44184: Apply GH-26274 to the non-GC-type branch of subtype_dealloc (GH-27...
T. Wouters
2021-07-15
1
-3/+11
*
bpo-43908: Immutable types inherit vectorcall (GH-27001)
Erlend Egeberg Aasland
2021-07-08
1
-4/+4
*
bpo-44531: Add _PyType_AllocNoTrack() function (GH-26947)
Victor Stinner
2021-07-01
1
-1/+11
*
bpo-44531: Fix type_repr() if tp_name is NULL (GH-26948)
Victor Stinner
2021-06-29
1
-0/+6
*
bpo-43693: Turn localspluskinds into an object (GH-26749)
Guido van Rossum
2021-06-21
1
-2/+2
*
bpo-38211: Clean up type_init() (GH-16257)
Sergey Fedoseev
2021-06-16
1
-19/+4
*
bpo-43693: Eliminate unused "fast locals". (gh-26587)
Eric Snow
2021-06-15
1
-19/+13
*
bpo-43693: Un-revert commit f3fa63e. (#26609)
Eric Snow
2021-06-08
1
-4/+9
*
Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...
Pablo Galindo
2021-06-08
1
-9/+4
*
bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...
Eric Snow
2021-06-07
1
-4/+9
*
bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)
Eric Snow
2021-06-07
1
-4/+7
*
bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...
Pablo Galindo
2021-06-04
1
-7/+4
*
bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...
Eric Snow
2021-06-03
1
-4/+7
*
bpo-44263: Py_TPFLAGS_HAVE_GC requires tp_traverse (GH-26463)
Victor Stinner
2021-06-01
1
-2/+30
*
bpo-43693: Clean up the PyCodeObject fields. (GH-26364)
Eric Snow
2021-05-26
1
-14/+4
*
bpo-44232: Fix type_new() error reporting (GH-26359)
Victor Stinner
2021-05-25
1
-0/+4
*
bpo-44184: Fix subtype_dealloc() for freed type (GH-26274)
Victor Stinner
2021-05-21
1
-2/+9
*
bpo-44032: Move data stack to thread from FrameObject. (GH-26076)
Mark Shannon
2021-05-21
1
-3/+3
*
bpo-43977: Make sure that tp_flags for pattern matching are inherited correct...
Mark Shannon
2021-05-02
1
-6/+12
*
bpo-43908: check_set_special_type_attr() checks Py_TPFLAGS_IMMUTABLETYPE (GH-...
Erlend Egeberg Aasland
2021-04-30
1
-7/+11
*
bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)
Victor Stinner
2021-04-30
1
-32/+67
*
bpo-43973: object_set_class() checks Py_TPFLAGS_IMMUTABLETYPE (GH-25714)
Erlend Egeberg Aasland
2021-04-30
1
-3/+3
*
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon
2021-04-30
1
-1/+6
*
bpo-43901: Lazy-create an empty annotations dict in all unannotated user clas...
larryhastings
2021-04-30
1
-0/+69
*
bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520)
Erlend Egeberg Aasland
2021-04-28
1
-1/+6
*
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner
2021-04-21
1
-2/+3
*
bpo-40137: Optimize _PyType_GetModuleByDef() loop (GH-25505)
Victor Stinner
2021-04-21
1
-5/+21
*
bpo-40137: _PyType_GetModuleByDef() doesn't check tp_flags (GH-25504)
Victor Stinner
2021-04-21
1
-15/+14
*
bpo-43770: Cleanup type_ready() (GH-25388)
Victor Stinner
2021-04-13
1
-119/+153
*
bpo-43770: Reorder type_ready() (GH-25373)
Victor Stinner
2021-04-13
1
-48/+56
*
bpo-43770: Refactor PyType_Ready() function (GH-25336)
Victor Stinner
2021-04-11
1
-154/+270
*
bpo-43770: Refactor type_new() function (GH-25325)
Victor Stinner
2021-04-10
1
-393/+730
[next]