Staging
v0.5.1
https://github.com/python/cpython
Revision c575c9064769d37ac9555b7cd2907c25ab030810 authored by Georg Brandl on 13 September 2008, 17:46:05 UTC, committed by Georg Brandl on 13 September 2008, 17:46:05 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r66452 | georg.brandl | 2008-09-13 19:41:16 +0200 (Sat, 13 Sep 2008) | 2 lines

  Remove things specific to the old Macintosh, and spell "Mac OS X" consistently.
........
1 parent a6fc212
Raw File
Tip revision: c575c9064769d37ac9555b7cd2907c25ab030810 authored by Georg Brandl on 13 September 2008, 17:46:05 UTC
Merged revisions 66452 via svnmerge from
Tip revision: c575c90
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