summaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-11 00:06:27 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-11 00:06:27 +0300
commitf0aa88f6e856710c4cf5bdb23a81817a841c4553 (patch)
tree23fa8c9d4d5f27eff0879db451848465a9faeb57 /PC
parente1076aa4e2fc164a908fc4a7e775ccf57c32c2c4 (diff)
downloadcpython-git-f0aa88f6e856710c4cf5bdb23a81817a841c4553.tar.gz
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 8b5be619c3..6e6766f7f0 100644
--- a/PC/bdist_wininst/install.c
+++ b/PC/bdist_wininst/install.c
@@ -1909,21 +1909,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. */