mirror of
https://github.com/python/cpython
synced 2024-11-02 08:37:57 +00:00
caa6380886
use the new names exclusively, and the linker will see the new names. Files that import "Python.h" also only see the new names. Files that import "allobjects.h" will continue to be able to use the old names, due to the inclusion (in allobjects.h) of "rename2.h".
3 lines
122 B
C
3 lines
122 B
C
/* Header file to be included by modules using new naming conventions */
|
|
#define Py_USE_NEW_NAMES
|
|
#include "allobjects.h"
|