[Python-checkins] r68121 - python/trunk/Doc/library/new.rst

georg.brandl python-checkins at python.org
Thu Jan 1 13:43:33 CET 2009


Author: georg.brandl
Date: Thu Jan  1 13:43:33 2009
New Revision: 68121

Log:
Point to types module in new module deprecation notice.


Modified:
   python/trunk/Doc/library/new.rst

Modified: python/trunk/Doc/library/new.rst
==============================================================================
--- python/trunk/Doc/library/new.rst	(original)
+++ python/trunk/Doc/library/new.rst	Thu Jan  1 13:43:33 2009
@@ -1,4 +1,3 @@
-
 :mod:`new` --- Creation of runtime internal objects
 ===================================================
 
@@ -7,7 +6,8 @@
    :deprecated:
 
 .. deprecated:: 2.6
-   The :mod:`new` module has been removed in Python 3.0.
+   The :mod:`new` module has been removed in Python 3.0.  Use the :mod:`types`
+   module's classes instead.
 
 .. sectionauthor:: Moshe Zadka <moshez at zadka.site.co.il>
 


More information about the Python-checkins mailing list