Staging
v0.5.1
https://github.com/python/cpython
Revision 8ea4616f16c8f89289e73849880499ef309ce18a authored by Serhiy Storchaka on 14 March 2013, 19:31:37 UTC, committed by Serhiy Storchaka on 14 March 2013, 19:31:37 UTC
urllib.parse.unquote() and urllib.parse.unquote_to_bytes().
1 parent 3b220e1
Raw File
Tip revision: 8ea4616f16c8f89289e73849880499ef309ce18a authored by Serhiy Storchaka on 14 March 2013, 19:31:37 UTC
Issue #1285086: Get rid of the refcounting hack and speed up
Tip revision: 8ea4616
pygetopt.h

#ifndef Py_PYGETOPT_H
#define Py_PYGETOPT_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_DATA(int) _PyOS_opterr;
PyAPI_DATA(int) _PyOS_optind;
PyAPI_DATA(wchar_t *) _PyOS_optarg;

PyAPI_FUNC(void) _PyOS_ResetGetOpt(void);
#endif

PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);

#ifdef __cplusplus
}
#endif
#endif /* !Py_PYGETOPT_H */
back to top