Staging
v0.5.1
https://github.com/python/cpython
Revision 601ec58f3e2b81184aab102f4eb21adb1c79a041 authored by Nick Coghlan on 02 July 2010, 16:01:53 UTC, committed by Nick Coghlan on 02 July 2010, 16:01:53 UTC
1 parent 8c16c5c
Raw File
Tip revision: 601ec58f3e2b81184aab102f4eb21adb1c79a041 authored by Nick Coghlan on 02 July 2010, 16:01:53 UTC
Issue 8202 actually caused an unintended behavioural change and was reverted in 2.7 - remove reference from What's New
Tip revision: 601ec58
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