summaryrefslogtreecommitdiff
path: root/Doc/faq/windows.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-24 11:04:36 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-24 11:04:36 +0200
commitb71b1c4d2869eaadccecb5c3e1798e8c1572404f (patch)
treeeb3b53cea2ce11fc6851cd27f7cb32307d2640de /Doc/faq/windows.rst
parent284a6b52c9b983bd25900f9536159bd479392916 (diff)
downloadcpython-b71b1c4d2869eaadccecb5c3e1798e8c1572404f.tar.gz
Removed spaces before colons and semicolons.
Diffstat (limited to 'Doc/faq/windows.rst')
-rw-r--r--Doc/faq/windows.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst
index 651ba22683..246856eee6 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.