Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:06:49

0001 // Implementation of PEP 585: support list[int] etc.
0002 #ifndef Py_GENERICALIASOBJECT_H
0003 #define Py_GENERICALIASOBJECT_H
0004 #ifdef __cplusplus
0005 extern "C" {
0006 #endif
0007 
0008 PyAPI_FUNC(PyObject *) Py_GenericAlias(PyObject *, PyObject *);
0009 PyAPI_DATA(PyTypeObject) Py_GenericAliasType;
0010 
0011 #ifdef __cplusplus
0012 }
0013 #endif
0014 #endif /* !Py_GENERICALIASOBJECT_H */