diff options
author | Georg Brandl <georg@python.org> | 2009-01-01 12:43:33 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-01 12:43:33 (GMT) |
commit | 3f74f57d76907f6300908086df9fbceed2266e60 (patch) | |
tree | 7039f6736e43dc986578be64c8169d6ac95b0411 | |
parent | 6269fec171191a38e418dc6b94697ca4fe6e4160 (diff) | |
download | cpython-3f74f57d76907f6300908086df9fbceed2266e60.zip cpython-3f74f57d76907f6300908086df9fbceed2266e60.tar.gz cpython-3f74f57d76907f6300908086df9fbceed2266e60.tar.bz2 |
Point to types module in new module deprecation notice.
-rw-r--r-- | Doc/library/new.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/new.rst b/Doc/library/new.rst index d8e455c..670d3d7 100644 --- a/Doc/library/new.rst +++ b/Doc/library/new.rst @@ -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@zadka.site.co.il> |