[Python-3000-checkins] r67470 - python/branches/py3k/Doc/whatsnew/3.0.rst
benjamin.peterson
python-3000-checkins at python.org
Tue Dec 2 02:12:04 CET 2008
Author: benjamin.peterson
Date: Tue Dec 2 02:12:04 2008
New Revision: 67470
Log:
fix markup
Modified:
python/branches/py3k/Doc/whatsnew/3.0.rst
Modified: python/branches/py3k/Doc/whatsnew/3.0.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.0.rst (original)
+++ python/branches/py3k/Doc/whatsnew/3.0.rst Tue Dec 2 02:12:04 2008
@@ -265,7 +265,7 @@
(a, b, *rest) = range(5)
- This sets *a* to 0, *b* to 1, and *rest to ``[2, 3, 4]``.
+ This sets *a* to 0, *b* to 1, and \*rest to ``[2, 3, 4]``.
* Dictionary comprehensions: ``{k: v for k, v in stuff}`` means the
same thing as ``dict(stuff)`` but is more flexible.
More information about the Python-3000-checkins
mailing list