Staging
v0.8.1
https://github.com/python/cpython
Revision 71316b0378d57a8ffe9733339318c8bdaccb706b authored by Mark Summerfield on 14 February 2008, 16:28:00 UTC, committed by Mark Summerfield on 14 February 2008, 16:28:00 UTC
UserDict and UserList and mixins in the intro. Fixed a typo.
1 parent 53349a0
Raw File
Tip revision: 71316b0378d57a8ffe9733339318c8bdaccb706b authored by Mark Summerfield on 14 February 2008, 16:28:00 UTC
Deleted two duplicated paragraphs in the intro. Added mention of
Tip revision: 71316b0
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