Message219085
| Author |
jgehrcke |
| Recipients |
docs@python, eric.araujo, ezio.melotti, georg.brandl, jgehrcke |
| Date |
2014年05月25日.12:36:24 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1401021385.55.0.784639264396.issue21575@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Currently, the tutorial for the list sort method does not show allowed arguments:
list.sort()
Sort the items of the list in place.
(see e.g. https://docs.python.org/3.4/tutorial/datastructures.html)
Is there a reason why we do not show the arguments there? For simplicity? One should note that a web search for Python's list methods ranks that page pretty high. We could list the defaults, as in the built-in help:
L.sort(cmp=None, key=None, reverse=False)
And could link to https://docs.python.org/2/library/functions.html#sorted for an explanation. |
|