Staging
v0.5.1
https://github.com/python/cpython
Revision 969a7003f908b167278dd5856e8af8799ccda8ee authored by Jeremy Hylton on 18 July 2003, 15:13:37 UTC, committed by Jeremy Hylton on 18 July 2003, 15:13:37 UTC
If some other test comes along and uses mimetypes, it will be
initialized from the system files.
1 parent 096d986
Raw File
Tip revision: 969a7003f908b167278dd5856e8af8799ccda8ee authored by Jeremy Hylton on 18 July 2003, 15:13:37 UTC
Make sure mimetypes is reinitialized before running the tests.
Tip revision: 969a700
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