diff options
author | Georg Brandl <georg@python.org> | 2009-04-27 15:29:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-27 15:29:09 (GMT) |
commit | 16a57f6a343d7bacd85e79c3edb64cd832d8a9ac (patch) | |
tree | c277aed5347aa94a08a6b6742f31f56efbc56948 /Doc/reference/compound_stmts.rst | |
parent | d91f8cf779d9ac4c34e3a47a5a6cfe698874c5dd (diff) | |
download | cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.zip cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.tar.gz cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.tar.bz2 |
Demote warnings to notices where appropriate, following the goal that as few "red box" warnings
should clutter the docs as possible. Part 1: stuff that gets merged to Py3k.
Diffstat (limited to 'Doc/reference/compound_stmts.rst')
-rw-r--r-- | Doc/reference/compound_stmts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 4d7addb..3c716b2 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -178,7 +178,7 @@ function :func:`range` returns a sequence of integers suitable to emulate the effect of Pascal's ``for i := a to b do``; e.g., ``range(3)`` returns the list ``[0, 1, 2]``. -.. warning:: +.. note:: .. index:: single: loop; over mutable sequence |