Staging
v0.5.1
https://github.com/python/cpython
Revision edeaf61b6827ab3a8673aff1fb7717917f08f003 authored by Miss Islington (bot) on 06 July 2020, 23:35:10 UTC, committed by GitHub on 06 July 2020, 23:35:10 UTC
(cherry picked from commit 782f44b8fb07ec33cee148b2b6b4cf53024fe0cd)

Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
1 parent 6488a4a
Raw File
Tip revision: edeaf61b6827ab3a8673aff1fb7717917f08f003 authored by Miss Islington (bot) on 06 July 2020, 23:35:10 UTC
bpo-41215: Make assertion in the new parser more strict (GH-21364)
Tip revision: edeaf61
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