Staging
v0.5.1
https://github.com/python/cpython
Revision 22d909f8c24bd7768df1a5bf0e52c597ea947cfb authored by terryjreedy on 14 June 2017, 02:13:15 UTC, committed by GitHub on 14 June 2017, 02:13:15 UTC
When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies.
(cherry picked from commit 188aedf8bb623d41302e10503268b0852ea91134)
1 parent d92ee3e
Raw File
Tip revision: 22d909f8c24bd7768df1a5bf0e52c597ea947cfb authored by terryjreedy on 14 June 2017, 02:13:15 UTC
[3.6]bpo-25514: Improve IDLE's connection refused message (#2177) (#2178)
Tip revision: 22d909f
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);

PyAPI_FUNC(int) _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring);
#endif /* !Py_LIMITED_API */

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