summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-09-29 17:09:11 (GMT)
committerFred Drake <fdrake@acm.org>2000-09-29 17:09:11 (GMT)
commit45888ffbd446bb689384f14ec994d712e8751e1c (patch)
tree8486d11acf5f7791a5473cc536d9b919db21de8f /Misc
parent31b761e326d083c3088f9c1aaf9e72f2dac4d190 (diff)
downloadcpython-45888ffbd446bb689384f14ec994d712e8751e1c.zip
cpython-45888ffbd446bb689384f14ec994d712e8751e1c.tar.gz
cpython-45888ffbd446bb689384f14ec994d712e8751e1c.tar.bz2
Added a missing "is" -- noted by Grant Griffin
<grant.griffin@honeywell.com>.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3fa65b2..1b38984 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -446,7 +446,7 @@ write:
print >> sys.stderr, "Error: bad dog!"
As a special feature, if the expression used to indicate the file
-evaluates to None, the current value of sys.stdout used. Thus:
+evaluates to None, the current value of sys.stdout is used. Thus:
print >> None, "Hello world"