Staging
v0.5.1
https://github.com/python/cpython
Revision 1e62aec3ed8c8c7b23ab56b46e250e9be2d40681 authored by Barry Warsaw on 12 September 2008, 23:25:57 UTC, committed by Barry Warsaw on 12 September 2008, 23:25:57 UTC
1 parent e6872eb
Raw File
Tip revision: 1e62aec3ed8c8c7b23ab56b46e250e9be2d40681 authored by Barry Warsaw on 12 September 2008, 23:25:57 UTC
Bumping to 2.6rc1
Tip revision: 1e62aec
new.py
"""Create new objects of various types.  Deprecated.

This module is no longer required except for backward compatibility.
Objects of most types can now be created by calling the type object.
"""
from warnings import warnpy3k
warnpy3k("The 'new' module has been removed in Python 3.0; use the 'types' "
            "module instead.", stacklevel=2)
del warnpy3k

from types import ClassType as classobj
from types import FunctionType as function
from types import InstanceType as instance
from types import MethodType as instancemethod
from types import ModuleType as module

# CodeType is not accessible in restricted execution mode
try:
    from types import CodeType as code
except ImportError:
    pass
back to top