Staging
v0.5.1
https://github.com/python/cpython
Revision 2751cb00290c9c805057665a8ea7218ea17921d8 authored by Martin v. Löwis on 22 November 2010, 09:01:54 UTC, committed by Martin v. Löwis on 22 November 2010, 09:01:54 UTC
........
  r86681 | martin.v.loewis | 2010-11-22 10:00:02 +0100 (Mo, 22 Nov 2010) | 2 lines

  Issue #10459: Update CJK character names to Unicode 6.0.
........
1 parent 0b7cac1
Raw File
Tip revision: 2751cb00290c9c805057665a8ea7218ea17921d8 authored by Martin v. Löwis on 22 November 2010, 09:01:54 UTC
Blocked revisions 86681 via svnmerge
Tip revision: 2751cb0
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