diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-24 09:05:24 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-12-24 09:05:24 (GMT) |
commit | 89e84e7523755faad1cc64ddb9f74a22a63135b1 (patch) | |
tree | 53a9c99c3fc2a4d6535b7b806beec5f26b06ca0a /Doc/faq | |
parent | 7ceb378b8d65de833746145d279959198d199540 (diff) | |
parent | f47036c1309536c048890c265605b06daf7bdc9c (diff) | |
download | cpython-89e84e7523755faad1cc64ddb9f74a22a63135b1.zip cpython-89e84e7523755faad1cc64ddb9f74a22a63135b1.tar.gz cpython-89e84e7523755faad1cc64ddb9f74a22a63135b1.tar.bz2 |
Removed spaces before colons and semicolons.
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/windows.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst index 651ba22..246856e 100644 --- a/Doc/faq/windows.rst +++ b/Doc/faq/windows.rst @@ -247,7 +247,7 @@ Embedding the Python interpreter in a Windows app can be summarized as follows: ... Py_Initialize(); // Initialize Python. initmyAppc(); // Initialize (import) the helper class. - PyRun_SimpleString("import myApp") ; // Import the shadow class. + PyRun_SimpleString("import myApp"); // Import the shadow class. 5. There are two problems with Python's C API which will become apparent if you use a compiler other than MSVC, the compiler used to build pythonNN.dll. |