summaryrefslogtreecommitdiffstats
path: root/Include/pygetopt.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix test failure in test_cmd_line by initializing the hash secret at the ↵Antoine Pitrou2012-02-211-0/+2
| | | | earliest point.
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+2
|
* Change command line processing API to use wchar_t.Martin v. Löwis2008-04-051-2/+2
| | | | Fixes #2128.
* Excise DL_EXPORT from Include.Mark Hammond2002-08-121-4/+4
| | | | Thanks to Skip Montanaro and Kalle Svensson for the patches.
* Move our own getopt() implementation to _PyOS_GetOpt(), and use itThomas Wouters2000-11-031-0/+17
regardless of whether the system getopt() does what we want. This avoids the hassle with prototypes and externs, and the check to see if the system getopt() does what we want. Prefix optind, optarg and opterr with _PyOS_ to avoid name clashes. Add new include file to define the right symbols. Fix Demo/pyserv/pyserv.c to include getopt.h itself, instead of relying on Python to provide it.