https://github.com/python/cpython
Revision 6074ee4ef2c451d5b8f92b53c22109163ed115c8 authored by Raymond Hettinger on 23 March 2013, 15:57:00 UTC, committed by Raymond Hettinger on 23 March 2013, 15:57:00 UTC
1 parent b9be7bb
Raw File
Tip revision: 6074ee4ef2c451d5b8f92b53c22109163ed115c8 authored by Raymond Hettinger on 23 March 2013, 15:57:00 UTC
Update collections ABC table to match the __abstractmethods__ attribute for each container.
Tip revision: 6074ee4
pygetopt.h

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

PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
PyAPI_DATA(char *) _PyOS_optarg;

PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);

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