https://github.com/python/cpython
Revision 6015cc50bc38b9e920ce4986ee10658eaa14f561 authored by Serhiy Storchaka on 28 October 2018, 11:43:03 UTC, committed by GitHub on 28 October 2018, 11:43:03 UTC
Some projects (e.g. Chameleon) create ast.Str containing an instance
of the str subclass.
1 parent 913876d
Raw File
Tip revision: 6015cc50bc38b9e920ce4986ee10658eaa14f561 authored by Serhiy Storchaka on 28 October 2018, 11:43:03 UTC
bpo-32892: Support subclasses of base types in isinstance checks for AST constants. (GH-9934)
Tip revision: 6015cc5
osmodule.h

/* os module interface */

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

#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);
#endif

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