Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 23f4589b4b7c4a51950a87175ce7fb31b89c8532 authored by Ɓukasz Langa on 25 February 2019, 12:08:32 UTC
v3.8.0a2
Tip revision: 23f4589
pycore_tupleobject.h
#ifndef Py_INTERNAL_TUPLEOBJECT_H
#define Py_INTERNAL_TUPLEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

#if !defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_BUILTIN)
#  error "this header requires Py_BUILD_CORE or Py_BUILD_CORE_BUILTIN define"
#endif

#include "tupleobject.h"

#define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item)

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