Staging
v0.5.1
https://github.com/python/cpython
Revision 5e9e9db9d9b648d2326e2853dc07377e12498e3f authored by Miss Islington (bot) on 29 May 2018, 15:59:27 UTC, committed by Yury Selivanov on 29 May 2018, 15:59:27 UTC
(cherry picked from commit a9cab433bbf02f3a1de59d14dc8f583181ffe2d5)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
1 parent e151f83
Raw File
Tip revision: 5e9e9db9d9b648d2326e2853dc07377e12498e3f authored by Miss Islington (bot) on 29 May 2018, 15:59:27 UTC
bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636) (#7205)
Tip revision: 5e9e9db
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