Staging
v0.5.1
https://github.com/python/cpython
Revision 7c251bbd6e94ee43f100c8011cbcb5d9a8a1c9b3 authored by Brian Curtin on 14 August 2010, 17:09:55 UTC, committed by Brian Curtin on 14 August 2010, 17:09:55 UTC
1 parent 77cb7ed
Raw File
Tip revision: 7c251bbd6e94ee43f100c8011cbcb5d9a8a1c9b3 authored by Brian Curtin on 14 August 2010, 17:09:55 UTC
Fix #9600. Don't use relative imports for _multiprocessing on Windows.
Tip revision: 7c251bb
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(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);

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