Message170499
| 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]) |
|