blob: e6079c2bb24febb85af452f4546efbbe9cd8999a [file] [log] [blame]
Guido van Rossum94c9d902002-06-16 01:22:13 +00001"""Create new objects of various types. Deprecated.
2
3This module is no longer required except for backward compatibility.
4Objects of most types can now be created by calling the type object.
5"""
6
Guido van Rossum13257902007-06-07 23:15:56 +00007classobj = type
Guido van Rossum94c9d902002-06-16 01:22:13 +00008from types import FunctionType as function
Guido van Rossum94c9d902002-06-16 01:22:13 +00009from types import MethodType as instancemethod
10from types import ModuleType as module
Guido van Rossuma8add0e2007-05-14 22:03:55 +000011from types import CodeType as code