Staging
v0.5.1
https://github.com/python/cpython
Revision ca37661a69a10d70536b779e3a6ca387340b0ecd authored by Neal Norwitz on 26 February 2008, 08:21:28 UTC, committed by Neal Norwitz on 26 February 2008, 08:21:28 UTC
like waiting for socket timeouts in test_smtplib :-).
1 parent aa0ef52
Raw File
Tip revision: ca37661a69a10d70536b779e3a6ca387340b0ecd authored by Neal Norwitz on 26 February 2008, 08:21:28 UTC
Add a timing flag to Trace so you can see where slowness occurs
Tip revision: ca37661
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