Staging
v0.5.1
https://github.com/python/cpython
Revision b626d2218c03127502025ccdf93d555e0487ea95 authored by Miss Skeleton (bot) on 29 October 2020, 22:38:12 UTC, committed by GitHub on 29 October 2020, 22:38:12 UTC

Automerge-Triggered-By: GH:ericvsmith
(cherry picked from commit 3317466061509c83dce257caab3661d52571cab1)

Co-authored-by: Teugea Ioan-Teodor <teodor.teugea@gmail.com>
1 parent 60324d2
Raw File
Tip revision: b626d2218c03127502025ccdf93d555e0487ea95 authored by Miss Skeleton (bot) on 29 October 2020, 22:38:12 UTC
bpo-42061: Document __format__ for IP addresses (GH-23018)
Tip revision: b626d22
code.h
/* Definitions for bytecode */

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

typedef struct PyCodeObject PyCodeObject;

#ifndef Py_LIMITED_API
#  define Py_CPYTHON_CODE_H
#  include  "cpython/code.h"
#  undef Py_CPYTHON_CODE_H
#endif

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