Staging
v0.8.1
https://github.com/python/cpython
Revision df6c8bcffef3380869c8f76317610ce452880b25 authored by Miss Islington (bot) on 28 November 2020, 15:07:51 UTC, committed by GitHub on 28 November 2020, 15:07:51 UTC
Co-Authored-By: Tyler Bell <mrbell321@gmail.com>
(cherry picked from commit 8085f742f4adfbc85f13fc734dfab036aa23acfb)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
1 parent 761c5a1
Raw File
Tip revision: df6c8bcffef3380869c8f76317610ce452880b25 authored by Miss Islington (bot) on 28 November 2020, 15:07:51 UTC
bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21925) (GH-23539)
Tip revision: df6c8bc
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