diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:07:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:07:47 (GMT) |
commit | 553e156921909c22fbc6d3c244d45606a746fa80 (patch) | |
tree | 82191d25cda6664a4904073064f44cd80b5d4b37 /PC | |
parent | 785273cd84a81a695a2707c0ef48df4f285f8699 (diff) | |
parent | d741a880497b8458ef068c111caa64546166e3ff (diff) | |
download | cpython-553e156921909c22fbc6d3c244d45606a746fa80.zip cpython-553e156921909c22fbc6d3c244d45606a746fa80.tar.gz cpython-553e156921909c22fbc6d3c244d45606a746fa80.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 bb2eb34..f39b381 100644 --- a/PC/bdist_wininst/install.c +++ b/PC/bdist_wininst/install.c @@ -1940,21 +1940,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. */ |