summaryrefslogtreecommitdiffstats
path: root/Doc/faq/windows.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-12-19 17:59:59 (GMT)
committerGeorg Brandl <georg@python.org>2009-12-19 17:59:59 (GMT)
commit62423cba9594d4c40c5432333ec42dc56829a025 (patch)
treea21f94824cca3d3fa0ceb6ff7f8fa02dccbf37d2 /Doc/faq/windows.rst
parent9e4ff75325cb5c4df61dad3bb64e5b5551bf7d3d (diff)
downloadcpython-62423cba9594d4c40c5432333ec42dc56829a025.zip
cpython-62423cba9594d4c40c5432333ec42dc56829a025.tar.gz
cpython-62423cba9594d4c40c5432333ec42dc56829a025.tar.bz2
#7500: add "Python 3 review needed" comments and fix a few obvious errors.
Diffstat (limited to 'Doc/faq/windows.rst')
-rw-r--r--Doc/faq/windows.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/Doc/faq/windows.rst b/Doc/faq/windows.rst
index eb1d3ac..a5ede41 100644
--- a/Doc/faq/windows.rst
+++ b/Doc/faq/windows.rst
@@ -8,6 +8,10 @@ Python on Windows FAQ
.. contents::
+.. XXX need review for Python 3.
+ XXX need review for Windows Vista/Seven?
+
+
How do I run a Python program under Windows?
--------------------------------------------
@@ -67,7 +71,7 @@ Python statements or expressions interactively and have them executed or
evaluated while you wait. This is one of Python's strongest features. Check it
by entering a few expressions of your choice and seeing the results::
- >>> print "Hello"
+ >>> print("Hello")
Hello
>>> "Hello" * 3
HelloHelloHello
@@ -507,7 +511,7 @@ Example::
import win32pipe
f = win32pipe.popen('dir /c c:\\')
- print f.readlines()
+ print(f.readlines())
f.close()