Staging
v0.5.1
https://github.com/python/cpython
Revision 6b81003bdbd9375886bae54f876650bcdccfe6c7 authored by Berker Peksag on 26 February 2017, 17:38:31 UTC, committed by GitHub on 26 February 2017, 17:38:31 UTC
1 parent deea29e
Raw File
Tip revision: 6b81003bdbd9375886bae54f876650bcdccfe6c7 authored by Berker Peksag on 26 February 2017, 17:38:31 UTC
bpo-28624: Add a test that checks that cwd parameter of Popen() accepts PathLike objects (#157) (#323)
Tip revision: 6b81003
pygetopt.h

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

#ifndef Py_LIMITED_API
PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
PyAPI_DATA(wchar_t *) _PyOS_optarg;

PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);

PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);
#endif /* !Py_LIMITED_API */

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