diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-18 21:53:15 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-18 21:53:15 +0200 |
commit | 009b811d678f36cf63be4fe26f3fbaa38aa0078e (patch) | |
tree | a24ddae0e641ac1bce8a5b33526bd05bd04d264c /PC | |
parent | Restored backward compatibility of pickling http.cookies.Morsel. It was (diff) | |
download | cpython-009b811d678f36cf63be4fe26f3fbaa38aa0078e.tar.gz cpython-009b811d678f36cf63be4fe26f3fbaa38aa0078e.tar.bz2 cpython-009b811d678f36cf63be4fe26f3fbaa38aa0078e.zip |
Removed unintentional trailing spaces in non-external and non-generated C files.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/launcher.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PC/launcher.c b/PC/launcher.c index 15230207790..fada4c9c16a 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -96,7 +96,7 @@ error(int rc, wchar_t * format, ... ) fwprintf(stderr, L"%ls\n", message); #else MessageBox(NULL, message, TEXT("Python Launcher is sorry to say ..."), - MB_OK); + MB_OK); #endif ExitProcess(rc); } @@ -349,7 +349,7 @@ locate_all_pythons() locate_pythons_for_key(HKEY_CURRENT_USER, KEY_READ | KEY_WOW64_64KEY); locate_pythons_for_key(HKEY_LOCAL_MACHINE, KEY_READ | KEY_WOW64_64KEY); } -#endif +#endif // now hit the "native" key for this process bittedness. debug(L"locating Pythons in native registry\n"); locate_pythons_for_key(HKEY_CURRENT_USER, KEY_READ); @@ -604,7 +604,7 @@ run_child(wchar_t * cmdline) // window, or fetching a message). As this launcher doesn't do this // directly, that cursor remains even after the child process does these // things. We avoid that by doing a simple post+get message. - // See http://bugs.python.org/issue17290 and + // See http://bugs.python.org/issue17290 and // https://bitbucket.org/vinay.sajip/pylauncher/issue/20/busy-cursor-for-a-long-time-when-running MSG msg; |