diff options
author | Georg Brandl <georg@python.org> | 2009-02-26 17:36:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-02-26 17:36:26 (GMT) |
commit | 13813f709218057d5525ac6f2b84f5f7bf761354 (patch) | |
tree | 951f91cc3cba100859a914c34a733dc51223fd95 /Doc | |
parent | a168698ab3108d3f8d35feed3d0c449ebeda5467 (diff) | |
download | cpython-13813f709218057d5525ac6f2b84f5f7bf761354.zip cpython-13813f709218057d5525ac6f2b84f5f7bf761354.tar.gz cpython-13813f709218057d5525ac6f2b84f5f7bf761354.tar.bz2 |
Document that setting sys.py3kwarning wont do anything.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sys.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 8e6f399..9d33c60 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -624,7 +624,9 @@ always available. .. data:: py3kwarning Bool containing the status of the Python 3.0 warning flag. It's ``True`` - when Python is started with the -3 option. + when Python is started with the -3 option. (This should be considered + read-only; setting it to a different value doesn't have an effect on + Python 3.0 warnings.) .. versionadded:: 2.6 |