forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
531 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#ifndef Py_INTERNAL_INTERSECTIONOBJECT_H | ||
#define Py_INTERNAL_INTERSECTIONOBJECT_H | ||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#ifndef Py_BUILD_CORE | ||
# error "this header requires Py_BUILD_CORE define" | ||
#endif | ||
|
||
extern PyTypeObject _PyIntersection_Type; | ||
#define _PyIntersection_Check(op) Py_IS_TYPE((op), &_PyIntersection_Type) | ||
extern PyObject *_Py_intersection_type_and(PyObject *, PyObject *); | ||
|
||
#define _PyGenericAlias_Check(op) PyObject_TypeCheck((op), &Py_GenericAliasType) | ||
extern PyObject *_Py_subs_parameters(PyObject *, PyObject *, PyObject *, PyObject *); | ||
extern PyObject *_Py_make_parameters(PyObject *); | ||
extern PyObject *_Py_intersection_args(PyObject *self); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif /* !Py_INTERNAL_INTESECTIONOBJECT_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.