https://github.com/python/cpython
Raw File
Tip revision: d71b3f4dbe753a18a0b170672db9824cc7d7dbed authored by Pierre Quentel on 21 November 2018, 12:22:42 UTC
bpo-20504: bug in cgi.py when a multipart/form-data request has no content-length
Tip revision: d71b3f4
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