diff options
author | Georg Brandl <georg@python.org> | 2008-06-04 13:01:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-04 13:01:30 (GMT) |
commit | a26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124 (patch) | |
tree | 4b3704507702b98e0ce4107403a72093a5d6b9fc /Doc/library | |
parent | f954c4b9fb8529cc13a2e24c58137c66ac836b28 (diff) | |
download | cpython-a26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124.zip cpython-a26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124.tar.gz cpython-a26f8ca668d09eff8ab03ef3d1cddb9bfbc6d124.tar.bz2 |
Revert r63934 -- it was mixing two patches.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/functions.rst | 8 | ||||
-rw-r--r-- | Doc/library/stdtypes.rst | 8 | ||||
-rw-r--r-- | Doc/library/sys.rst | 2 |
3 files changed, 2 insertions, 16 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index a3c456c..875eea0 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -91,14 +91,6 @@ are always available. They are listed here in alphabetical order. return False -.. function:: ascii(object) - - As :func:`repr`, return a string containing a printable - representation of an object. But unlike :func:`repr`, the non-ASCII - characters in the string returned by :func:`ascii`() are hex-escaped - to generate a same string as :func:`repr` in Python 2. - - .. function:: bin(x) Convert an integer number to a binary string. The result is a valid Python diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index bccc02a..09549ad 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -774,14 +774,6 @@ functions based on regular expressions. least one cased character, false otherwise. -.. method:: str.isprintable() - - Return true if all characters in the string are printable and there is at - least one character, false otherwise. Characters defined in the Unicode - character database as "Other" or "Separator" other than ASCII space(0x20) are - not considered printable. - - .. method:: str.isspace() Return true if there are only whitespace characters in the string and there is diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index b354603..0929f0e 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -231,6 +231,8 @@ always available. +------------------------------+------------------------------------------+ | :const:`ignore_environment` | -E | +------------------------------+------------------------------------------+ + | :const:`tabcheck` | -t or -tt | + +------------------------------+------------------------------------------+ | :const:`verbose` | -v | +------------------------------+------------------------------------------+ | :const:`unicode` | -U | |