diff options
author | Georg Brandl <georg@python.org> | 2009-02-27 17:03:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-02-27 17:03:38 (GMT) |
commit | f341acd5b539facaae2b833842518eff5cc28fbd (patch) | |
tree | 75ef3200fe7290d366f795a4df175cc5504d28b4 /Doc | |
parent | 2dd0104d36c062cf1530687d0d34f4d7d4349f21 (diff) | |
download | cpython-f341acd5b539facaae2b833842518eff5cc28fbd.zip cpython-f341acd5b539facaae2b833842518eff5cc28fbd.tar.gz cpython-f341acd5b539facaae2b833842518eff5cc28fbd.tar.bz2 |
#5360: remove RO which has been kicked from 3k.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/extending/newtypes.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/extending/newtypes.rst b/Doc/extending/newtypes.rst index a0a797a..5264a87 100644 --- a/Doc/extending/newtypes.rst +++ b/Doc/extending/newtypes.rst @@ -1154,8 +1154,6 @@ combined using bitwise-OR. +===========================+==============================================+ | :const:`READONLY` | Never writable. | +---------------------------+----------------------------------------------+ -| :const:`RO` | Shorthand for :const:`READONLY`. | -+---------------------------+----------------------------------------------+ | :const:`READ_RESTRICTED` | Not readable in restricted mode. | +---------------------------+----------------------------------------------+ | :const:`WRITE_RESTRICTED` | Not writable in restricted mode. | @@ -1165,7 +1163,6 @@ combined using bitwise-OR. .. index:: single: READONLY - single: RO single: READ_RESTRICTED single: WRITE_RESTRICTED single: RESTRICTED |