Staging
v0.5.1
https://github.com/python/cpython
Revision 00134f64d982561750f57f1a0bb7bb073f9f237c authored by Steve Dower on 19 June 2017, 18:12:56 UTC, committed by Ned Deily on 07 July 2017, 03:19:09 UTC
* Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat
Also fixes bdist_wininst.vcxproj to use correct version in generated name.

(cherry picked from commit 06d6e3d0bb5b8a3d3105289034953a8014356a0b)
1 parent 268e1fb
Raw File
Tip revision: 00134f64d982561750f57f1a0bb7bb073f9f237c authored by Steve Dower on 19 June 2017, 18:12:56 UTC
bpo-30687: Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat (#2252) (#2280)
Tip revision: 00134f6
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