resource.error

exception resource.error A deprecated alias of OSError. Changed in version 3.3: Following PEP 3151, this class was made an alias of OSError.

reprlib.Repr.repr1()

Repr.repr1(obj, level) Recursive implementation used by repr(). This uses the type of obj to determine which formatting method to call, passing it obj and level. The type-specific methods should call repr1() to perform recursive formatting, with level - 1 for the value of level in the recursive call.

reprlib.Repr.repr()

Repr.repr(obj) The equivalent to the built-in repr() that uses the formatting imposed by the instance.

reprlib.Repr.maxtuple

Repr.maxtuple Repr.maxset Repr.maxfrozenset Repr.maxdeque Repr.maxarray Limits on the number of entries represented for the named object type. The default is 4 for maxdict, 5 for maxarray, and 6 for the others.

reprlib.Repr.maxstring

Repr.maxstring Limit on the number of characters in the representation of the string. Note that the “normal” representation of the string is used as the character source: if escape sequences are needed in the representation, these may be mangled when the representation is shortened. The default is 30.

reprlib.Repr.maxset

Repr.maxset Repr.maxfrozenset Repr.maxdeque Repr.maxarray Limits on the number of entries represented for the named object type. The default is 4 for maxdict, 5 for maxarray, and 6 for the others.

reprlib.Repr.maxother

Repr.maxother This limit is used to control the size of object types for which no specific formatting method is available on the Repr object. It is applied in a similar manner as maxstring. The default is 20.

reprlib.Repr.maxlong

Repr.maxlong Maximum number of characters in the representation for an integer. Digits are dropped from the middle. The default is 40.

reprlib.Repr.maxlist

Repr.maxlist Repr.maxtuple Repr.maxset Repr.maxfrozenset Repr.maxdeque Repr.maxarray Limits on the number of entries represented for the named object type. The default is 4 for maxdict, 5 for maxarray, and 6 for the others.

reprlib.Repr.maxlevel

Repr.maxlevel Depth limit on the creation of recursive representations. The default is 6.