[Python-checkins] python/dist/src/Doc/tools push-docs.sh,1.19,1.20

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Nov 2 20:18:22 CET 2004


Update of /cvsroot/python/python/dist/src/Doc/tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10233/tools

Modified Files:
	push-docs.sh 
Log Message:
clarify discussion of iteration in the section on the "for" statement
(SF bug #829073)


Index: push-docs.sh
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tools/push-docs.sh,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- push-docs.sh	29 Jun 2004 14:39:06 -0000	1.19
+++ push-docs.sh	2 Nov 2004 19:18:20 -0000	1.20
@@ -11,6 +11,7 @@
 TARGET="$TARGETHOST:$TARGETDIR"
 
 ADDRESSES='python-dev at python.org doc-sig at python.org python-list at python.org'
+ADDRESSES=fdrake01 at comcast.net
 
 TOOLDIR="`dirname $0`"
 VERSION=`$TOOLDIR/getversioninfo`
@@ -32,7 +33,7 @@
 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.



More information about the Python-checkins mailing list