Staging
v0.5.1
https://github.com/python/cpython
Revision 42cc06ebf4cbb9ac75806c0d0203f3664853bc61 authored by Ezio Melotti on 24 November 2010, 20:54:01 UTC, committed by Ezio Melotti on 24 November 2010, 20:54:01 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86732 | ezio.melotti | 2010-11-24 22:18:02 +0200 (Wed, 24 Nov 2010) | 1 line

  #10299: Add a table that lists all the built-in functions in functions.rst
........
1 parent 8b7eef3
Raw File
Tip revision: 42cc06ebf4cbb9ac75806c0d0203f3664853bc61 authored by Ezio Melotti on 24 November 2010, 20:54:01 UTC
Merged revisions 86732 via svnmerge from
Tip revision: 42cc06e
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(wchar_t *) _PyOS_optarg;

PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);

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