diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:06:39 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:06:39 (GMT) |
commit | d741a880497b8458ef068c111caa64546166e3ff (patch) | |
tree | 420566f184821407b3fe48e2c47fe3769657a8ff /PC | |
parent | 6250df81bfbe567bb12c6dc29af149c62f35afa6 (diff) | |
download | cpython-d741a880497b8458ef068c111caa64546166e3ff.zip cpython-d741a880497b8458ef068c111caa64546166e3ff.tar.gz cpython-d741a880497b8458ef068c111caa64546166e3ff.tar.bz2 |
Fixed indentation of Python examples in C comments.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/bdist_wininst/install.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/PC/bdist_wininst/install.c b/PC/bdist_wininst/install.c index a0232d2..f4cf348 100644 --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -1941,21 +1941,21 @@ InstallFilesDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) /* * The scheme we have to use depends on the Python version... if sys.version < "2.2": - WINDOWS_SCHEME = { - 'purelib': '$base', - 'platlib': '$base', - 'headers': '$base/Include/$dist_name', - 'scripts': '$base/Scripts', - 'data' : '$base', - } + WINDOWS_SCHEME = { + 'purelib': '$base', + 'platlib': '$base', + 'headers': '$base/Include/$dist_name', + 'scripts': '$base/Scripts', + 'data' : '$base', + } else: - WINDOWS_SCHEME = { - 'purelib': '$base/Lib/site-packages', - 'platlib': '$base/Lib/site-packages', - 'headers': '$base/Include/$dist_name', - 'scripts': '$base/Scripts', - 'data' : '$base', - } + WINDOWS_SCHEME = { + 'purelib': '$base/Lib/site-packages', + 'platlib': '$base/Lib/site-packages', + 'headers': '$base/Include/$dist_name', + 'scripts': '$base/Scripts', + 'data' : '$base', + } */ scheme = GetScheme(py_major, py_minor); /* Run the pre-install script. */ |