From: Fred Drake Date: Fri, 29 Sep 2000 17:09:11 +0000 (+0000) Subject: Added a missing "is" -- noted by Grant Griffin X-Git-Tag: v2.0c1~211 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45888ffbd446bb689384f14ec994d712e8751e1c;p=python Added a missing "is" -- noted by Grant Griffin . --- diff --git a/Misc/NEWS b/Misc/NEWS index 3fa65b285e..1b3898405b 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"