Staging
v0.5.1
https://github.com/python/cpython
Revision a0d9c685d0c3f817c5a7143098ce1a89380ee514 authored by Serhiy Storchaka on 30 October 2016, 20:53:09 UTC, committed by Serhiy Storchaka on 30 October 2016, 20:53:09 UTC
2 parent s 2f4453e + 0bcd89b
Raw File
Tip revision: a0d9c685d0c3f817c5a7143098ce1a89380ee514 authored by Serhiy Storchaka on 30 October 2016, 20:53:09 UTC
Issue #28549: Fixed segfault in curses's addch() with ncurses6.
Tip revision: a0d9c68
osmodule.h

/* os module interface */

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

PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);

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