Staging
v0.5.1
https://github.com/python/cpython
Revision f92544483fc724b7e9ac11b2ee86b38e069cc70f authored by Miss Islington (bot) on 18 July 2020, 13:14:32 UTC, committed by GitHub on 18 July 2020, 13:14:32 UTC
(cherry picked from commit 9b01c598ca2576a1056816e85dd84bf5f9c74688)

Co-authored-by: Jordan Speicher <uSpike@users.noreply.github.com>
1 parent 760552c
Raw File
Tip revision: f92544483fc724b7e9ac11b2ee86b38e069cc70f authored by Miss Islington (bot) on 18 July 2020, 13:14:32 UTC
bpo-41325: Add version note for args and kwargs property in call object (GH-21525)
Tip revision: f925444
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