Staging
v0.5.1
https://github.com/python/cpython
Revision e0251787d85950538cf2490c2c73cc680b153940 authored by Miro Hrončok on 18 November 2020, 21:39:03 UTC, committed by GitHub on 18 November 2020, 21:39:03 UTC
A follow up for 0e2ac21dd4960574e89561243763eabba685296a
1 parent 7c9487d
Raw File
Tip revision: e0251787d85950538cf2490c2c73cc680b153940 authored by Miro Hrončok on 18 November 2020, 21:39:03 UTC
bpo-39573: Remove What's new entry for Py_SIZE() (GH-23375)
Tip revision: e025178
frameobject.h
/* Frame object interface */

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

#include "pyframe.h"

#ifndef Py_LIMITED_API
#  define Py_CPYTHON_FRAMEOBJECT_H
#  include  "cpython/frameobject.h"
#  undef Py_CPYTHON_FRAMEOBJECT_H
#endif

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