[Python-3000-checkins] r57605 - in python/branches/py3k: Doc/c-api/concrete.rst Doc/library/types.rst

collin.winter python-3000-checkins at python.org
Tue Aug 28 08:09:47 CEST 2007


Author: collin.winter
Date: Tue Aug 28 08:09:47 2007
New Revision: 57605

Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/c-api/concrete.rst
   python/branches/py3k/Doc/library/types.rst
Log:
Kill lingering docs references to UnicodeType.


Modified: python/branches/py3k/Doc/c-api/concrete.rst
==============================================================================
--- python/branches/py3k/Doc/c-api/concrete.rst	(original)
+++ python/branches/py3k/Doc/c-api/concrete.rst	Tue Aug 28 08:09:47 2007
@@ -1000,7 +1000,7 @@
 .. cvar:: PyTypeObject PyUnicode_Type
 
    This instance of :ctype:`PyTypeObject` represents the Python Unicode type.  It
-   is exposed to Python code as ``unicode`` and ``types.UnicodeType``.
+   is exposed to Python code as ``str``.
 
 The following APIs are really C macros and can be used to do fast checks and to
 access internal read-only data of Unicode objects:

Modified: python/branches/py3k/Doc/library/types.rst
==============================================================================
--- python/branches/py3k/Doc/library/types.rst	(original)
+++ python/branches/py3k/Doc/library/types.rst	Tue Aug 28 08:09:47 2007
@@ -85,13 +85,6 @@
    :class:`str`.
 
 
-.. data:: UnicodeType
-
-   The type of Unicode character strings (e.g. ``u'Spam'``).  This is not defined
-   if Python was built without Unicode support.  It's an alias of the built-in
-   :class:`unicode`.
-
-
 .. data:: TupleType
 
    The type of tuples (e.g. ``(1, 2, 3, 'Spam')``); alias of the built-in


More information about the Python-3000-checkins mailing list