Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-35444: Unify and optimize the helper for getting a builtin object. ↵ | Serhiy Storchaka | 2018-12-11 | 1 | -3/+0 |
| | | | | | | | | (GH-11047) This speeds up pickling of some iterators. This fixes also error handling in pickling methods when fail to look up builtin "getattr". | ||||
* | bpo-35134: Create Include/cpython/object.h (GH-10679) | Victor Stinner | 2018-11-26 | 1 | -0/+454 |
* Move object.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/object.h header file. * "typedef struct _typeobject PyTypeObject;" is now always defined in object.h, but if Py_LIMITED_API is not defined, Include/cpython/object.h also defines the structure. * Complete the printfunc comment to mention Py_LIMITED_API define. |