Staging
v0.5.1
https://github.com/python/cpython
Revision 516a6a254814d2bc6a90290dfc44d77fdfb4050b authored by Victor Stinner on 18 June 2019, 00:13:58 UTC, committed by Ned Deily on 18 June 2019, 00:13:57 UTC
(cherry picked from commit c1f5667be1e3ec5871560c677402c1252c6018a6)
1 parent ecafe8e
Raw File
Tip revision: 516a6a254814d2bc6a90290dfc44d77fdfb4050b authored by Victor Stinner on 18 June 2019, 00:13:58 UTC
bpo-33529, email: Fix infinite loop in email header encoding (GH-12020) (GH-14162)
Tip revision: 516a6a2
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