Staging
v0.8.1
https://github.com/python/cpython
Revision eb24988962728b3edbd346ced938c4120e7e2eed authored by Serhiy Storchaka on 15 August 2016, 06:46:07 UTC, committed by Serhiy Storchaka on 15 August 2016, 06:46:07 UTC
and iterables.  Speed up to 3 times for short objects.  Original patch by
Naoki Inada.
1 parent d003423
Raw File
Tip revision: eb24988962728b3edbd346ced938c4120e7e2eed authored by Serhiy Storchaka on 15 August 2016, 06:46:07 UTC
Issue #27704: Optimized creating bytes and bytearray from byte-like objects
Tip revision: eb24988
enumobject.h
#ifndef Py_ENUMOBJECT_H
#define Py_ENUMOBJECT_H

/* Enumerate Object */

#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) PyEnum_Type;
PyAPI_DATA(PyTypeObject) PyReversed_Type;

#ifdef __cplusplus
}
#endif

#endif /* !Py_ENUMOBJECT_H */
back to top