Staging
v0.5.1
https://github.com/python/cpython
Revision 35b95aaf21534e4a8e3370dfd6f7482265316c9e authored by Victor Stinner on 27 October 2020, 21:24:33 UTC, committed by GitHub on 27 October 2020, 21:24:33 UTC
Move the _PyLong_GetOne() call outside the fast-path loop.
1 parent c310185
Raw File
Tip revision: 35b95aaf21534e4a8e3370dfd6f7482265316c9e authored by Victor Stinner on 27 October 2020, 21:24:33 UTC
bpo-42161: Micro-optimize _collections._count_elements() (GH-23008)
Tip revision: 35b95aa
code.h
/* Definitions for bytecode */

#ifndef Py_CODE_H
#define Py_CODE_H
#ifdef __cplusplus
extern "C" {
#endif

typedef struct PyCodeObject PyCodeObject;

#ifndef Py_LIMITED_API
#  define Py_CPYTHON_CODE_H
#  include  "cpython/code.h"
#  undef Py_CPYTHON_CODE_H
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_CODE_H */
back to top