https://github.com/python/cpython
Revision 574547a75c79b506261520c5773ae08a1dcea1b9 authored by Jason R. Coombs on 15 April 2020, 17:55:43 UTC, committed by GitHub on 15 April 2020, 17:55:43 UTC
1 parent 5eca75d
Raw File
Tip revision: 574547a75c79b506261520c5773ae08a1dcea1b9 authored by Jason R. Coombs on 15 April 2020, 17:55:43 UTC
Clean up compatibility code in importlib fixtures (#19156)
Tip revision: 574547a
interpreteridobject.h
#ifndef Py_INTERPRETERIDOBJECT_H
#define Py_INTERPRETERIDOBJECT_H

#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
#  define Py_CPYTHON_INTERPRETERIDOBJECT_H
#  include  "cpython/interpreteridobject.h"
#  undef Py_CPYTHON_INTERPRETERIDOBJECT_H
#endif

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