This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author chris.jerdonek
Recipients asvetlov, chris.jerdonek, docs@python, eric.araujo, ezio.melotti, georg.brandl, python-dev
Date 2012-09-15.01:10:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1347671431.93.0.92031245001.issue15831@psf.upfronthosting.co.za>
In-reply-to
Content
Since the bare * notation wasn't added until 3.0, my guess is that we want to remove the * below (from the 2.7 application of the patch) rather than adding it back in the max() function I pasted above:

-.. function:: min(iterable[, args...][key])
+.. function:: min(iterable, *[, key])
+              min(arg1, arg2, *args[, key])
History
Date User Action Args
2012-09-15 01:10:32chris.jerdoneksetrecipients: + chris.jerdonek, georg.brandl, ezio.melotti, eric.araujo, asvetlov, docs@python, python-dev
2012-09-15 01:10:31chris.jerdoneksetmessageid: <1347671431.93.0.92031245001.issue15831@psf.upfronthosting.co.za>
2012-09-15 01:10:31chris.jerdoneklinkissue15831 messages
2012-09-15 01:10:30chris.jerdonekcreate