]> granicus.if.org Git - python/commitdiff
clarify discussion of iteration in the section on the "for" statement
authorFred Drake <fdrake@acm.org>
Tue, 2 Nov 2004 19:18:20 +0000 (19:18 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 2 Nov 2004 19:18:20 +0000 (19:18 +0000)
(SF bug #829073)

Doc/tools/push-docs.sh

index dfccb5b7330f163f8f73a5697543954ff4cc3ffe..4a71b7a29ce5d83fdec20fe10d994a094644af6c 100755 (executable)
@@ -11,6 +11,7 @@ PKGTYPE="bzip"  # must be one of: bzip, tar, zip  ("tar" implies gzip)
 TARGET="$TARGETHOST:$TARGETDIR"
 
 ADDRESSES='python-dev@python.org doc-sig@python.org python-list@python.org'
+ADDRESSES=fdrake01@comcast.net
 
 TOOLDIR="`dirname $0`"
 VERSION=`$TOOLDIR/getversioninfo`
@@ -32,7 +33,7 @@ ANNOUNCE=true
 getopt -T >/dev/null
 if [ $? -eq 4 ] ; then
     # We have a sufficiently useful getopt(1) implementation.
-    set -- `getopt -ssh m:p:qt:F: "$@"`
+    eval "set -- `getopt -ssh m:p:qt:F: \"$@\"`"
 else
     # This version of getopt doesn't support quoting of long options
     # with spaces, so let's not rely on it at all.