Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 407 Bytes

File metadata and controls

33 lines (26 loc) · 407 Bytes

object

Description

Returns a new featureless object.

Syntax

object()

Return Value

#TODO

Time Complexity

#TODO

Remarks

object is a base for all new style classes. It has the methods that are common to all instances of new style classes.

Example

>>> o = object()
>>> o
<object object at 0x02AA1510>

See Also

#TODO