summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-10 21:06:39 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-10 21:06:39 (GMT)
commitd741a880497b8458ef068c111caa64546166e3ff (patch)
tree420566f184821407b3fe48e2c47fe3769657a8ff /PC
parent6250df81bfbe567bb12c6dc29af149c62f35afa6 (diff)
downloadcpython-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.c28
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. */