Staging
v0.5.1
https://github.com/python/cpython
Revision c6994f2502a39c5dbc201c62676c6cc9411675fd authored by Andrew M. Kuchling on 03 October 2006, 18:25:19 UTC, committed by Andrew M. Kuchling on 03 October 2006, 18:25:19 UTC
Make staticmethod and classmethod complain about keyword args.
1 parent 7828783
Raw File
Tip revision: c6994f2502a39c5dbc201c62676c6cc9411675fd authored by Andrew M. Kuchling on 03 October 2006, 18:25:19 UTC
[Backport rev. 42545 by georg.brandl]
Tip revision: c6994f2
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 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