Staging
v0.5.1
https://github.com/python/cpython
Revision e5dc24e874da603d29d1e15035e38dd28e72a39f authored by Michael Foord on 01 November 2010, 22:11:53 UTC, committed by Michael Foord on 01 November 2010, 22:11:53 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86101 | michael.foord | 2010-11-01 21:09:03 +0000 (Mon, 01 Nov 2010) | 1 line

  Fix issue 9926. TestSuite subclasses that override __call__ are called correctly.
........
1 parent 68c3678
Raw File
Tip revision: e5dc24e874da603d29d1e15035e38dd28e72a39f authored by Michael Foord on 01 November 2010, 22:11:53 UTC
Merged revisions 86101 via svnmerge from
Tip revision: e5dc24e
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