summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-04-27 16:20:50 (GMT)
committerGeorg Brandl <georg@python.org>2009-04-27 16:20:50 (GMT)
commite720c0aa74ca8e6cf350b808c6ca795e587ebf88 (patch)
treed98ed50657772424243a590928333f96a61bb525 /Doc/library/functions.rst
parentc67d362a89fe6076120f6de706725c313f515122 (diff)
downloadcpython-e720c0aa74ca8e6cf350b808c6ca795e587ebf88.zip
cpython-e720c0aa74ca8e6cf350b808c6ca795e587ebf88.tar.gz
cpython-e720c0aa74ca8e6cf350b808c6ca795e587ebf88.tar.bz2
Merged revisions 72009 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72009 | georg.brandl | 2009-04-27 17:29:09 +0200 (Mo, 27 Apr 2009) | 3 lines 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/library/functions.rst')
-rw-r--r--Doc/library/functions.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index 8c0a6ce..c79a8c4 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -359,7 +359,7 @@ are always available. They are listed here in alphabetical order.
global and local dictionary, respectively, which may be useful to pass around
for use as the second and third argument to :func:`exec`.
- .. warning::
+ .. note::
The default *locals* act as described for function :func:`locals` below:
modifications to the default *locals* dictionary should not be attempted.
@@ -591,7 +591,7 @@ are always available. They are listed here in alphabetical order.
Update and return a dictionary representing the current local symbol table.
- .. warning::
+ .. note::
The contents of this dictionary should not be modified; changes may not affect
the values of local variables used by the interpreter.
@@ -1166,7 +1166,7 @@ are always available. They are listed here in alphabetical order.
else that has a :attr:`__dict__` attribute), returns a dictionary corresponding
to the object's symbol table.
- .. warning::
+ .. note::
The returned dictionary should not be modified:
the effects on the corresponding symbol table are undefined. [#]_