Staging
v0.5.1
https://github.com/python/cpython
Revision 4575010943c7a6013fad39a9c31e07e3c498a3ce authored by Raymond Hettinger on 21 June 2014, 18:27:36 UTC, committed by Raymond Hettinger on 21 June 2014, 18:27:36 UTC
1 parent 94919a4
Raw File
Tip revision: 4575010943c7a6013fad39a9c31e07e3c498a3ce authored by Raymond Hettinger on 21 June 2014, 18:27:36 UTC
Issue 21635: Fix caching in difflib.SequenceMatcher.get_matching_blocks().
Tip revision: 4575010
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