mirror of
https://github.com/python/cpython.git
synced 2025-12-11 19:40:17 +00:00
clarify discussion of iteration in the section on the "for" statement
(SF bug #829073)
This commit is contained in:
parent
9a40851569
commit
303e30ef9f
1 changed files with 2 additions and 1 deletions
|
|
@ -11,6 +11,7 @@ PKGTYPE="bzip" # must be one of: bzip, tar, zip ("tar" implies gzip)
|
||||||
TARGET="$TARGETHOST:$TARGETDIR"
|
TARGET="$TARGETHOST:$TARGETDIR"
|
||||||
|
|
||||||
ADDRESSES='python-dev@python.org doc-sig@python.org python-list@python.org'
|
ADDRESSES='python-dev@python.org doc-sig@python.org python-list@python.org'
|
||||||
|
ADDRESSES=fdrake01@comcast.net
|
||||||
|
|
||||||
TOOLDIR="`dirname $0`"
|
TOOLDIR="`dirname $0`"
|
||||||
VERSION=`$TOOLDIR/getversioninfo`
|
VERSION=`$TOOLDIR/getversioninfo`
|
||||||
|
|
@ -32,7 +33,7 @@ ANNOUNCE=true
|
||||||
getopt -T >/dev/null
|
getopt -T >/dev/null
|
||||||
if [ $? -eq 4 ] ; then
|
if [ $? -eq 4 ] ; then
|
||||||
# We have a sufficiently useful getopt(1) implementation.
|
# We have a sufficiently useful getopt(1) implementation.
|
||||||
set -- `getopt -ssh m:p:qt:F: "$@"`
|
eval "set -- `getopt -ssh m:p:qt:F: \"$@\"`"
|
||||||
else
|
else
|
||||||
# This version of getopt doesn't support quoting of long options
|
# This version of getopt doesn't support quoting of long options
|
||||||
# with spaces, so let's not rely on it at all.
|
# with spaces, so let's not rely on it at all.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue