X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=psycopg2%2Fdoc%2Fapi%2Fpublic%2F__builtin__.type-class.html;fp=psycopg2%2Fdoc%2Fapi%2Fpublic%2F__builtin__.type-class.html;h=0000000000000000000000000000000000000000;hb=958a016698f676694ce8501dea6367f6604b6fc1;hp=7af340f2e8050ece3bc955de998d6a0a399d217e;hpb=8711362afb2a503aff4694a4975e52c0df083688;p=plcapi.git diff --git a/psycopg2/doc/api/public/__builtin__.type-class.html b/psycopg2/doc/api/public/__builtin__.type-class.html deleted file mode 100644 index 7af340f..0000000 --- a/psycopg2/doc/api/public/__builtin__.type-class.html +++ /dev/null @@ -1,384 +0,0 @@ - - - - - __builtin__.type - - - - - - - - - - - - - - - - - - - -
- - Module __builtin__ :: - Class type -
-
- - -
[show private | hide private]
[frames | no frames]
- - -

Type type

- -
-object --+
-         |
-        type
-

- -
- -

type(object) -> the object's type -type(name, bases, dict) -> a new type

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Method Summary
 __call__(x, - ...) -
-Return x(...)...
 __cmp__(x, - y) -
-Return cmp(x,y)...
 __delattr__(...) -
-x.__delattr__('name') <==> del x.name
 __getattribute__(...) -
-x.__getattribute__('name') <==> x.name
 __hash__(x) -
-Return hash(x)...
 __new__(T, - S, - ...) -
-Return a new object with type S, a subtype of T...
 __repr__(x) -
-Return repr(x)...
 __setattr__(...) -
-x.__setattr__('name', value) <==> x.name = value
list of immediate subclasses__subclasses__() -
listmro() -
-return a type's method resolution order
    Inherited from object
 __init__(...) -
-x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 __reduce__(...) -
-helper for pickle
 __reduce_ex__(...) -
-helper for pickle
 __str__(x) -
-Return str(x)...

- - - - - - - - - - - - - -
Property Summary
 __base__
 __basicsize__
 __dictoffset__
 __flags__
 __itemsize__
 __mro__
 __weakrefoffset__

- - - - - - - - - - -
Class Variable Summary
tuple__bases__ = (<type 'object'>,) -
str__name__ = 'type' -

- - - - - - -
Method Details
- - -
-

__call__(x, - ...) -
(Call operator) -

-
-
Returns:
-
-
-x(...)
-
-
-
-
-
- - -
-

__cmp__(x, - y) -
(Comparison operator) -

-
-
Returns:
-
-
-cmp(x,y)
-
-
-
-
-
- - -
-

__delattr__(...) -

-

x.__delattr__('name') <==> del x.name

-
-
Overrides:
-
__builtin__.object.__delattr__
-
-
-
- - -
-

__getattribute__(...) -

-

x.__getattribute__('name') <==> x.name

-
-
Overrides:
-
__builtin__.object.__getattribute__
-
-
-
- - -
-

__hash__(x) -
(Hashing function) -

-
-
Returns:
-
-
-hash(x)
-
-
-
-
Overrides:
-
__builtin__.object.__hash__
-
-
-
- - -
-

__new__(T, - S, - ...) -

-
-
Returns:
-
-
-a new object with type S, a subtype of T
-
-
-
-
Overrides:
-
__builtin__.object.__new__
-
-
-
- - -
-

__repr__(x) -
(Representation operator) -

-
-
Returns:
-
-
-repr(x)
-
-
-
-
Overrides:
-
__builtin__.object.__repr__
-
-
-
- - -
-

__setattr__(...) -

-

x.__setattr__('name', value) <==> x.name = value

-
-
Overrides:
-
__builtin__.object.__setattr__
-
-
-
- - -
-

__subclasses__() -

-
-
Returns:
-
-list of immediate subclasses
-
-
-
- - -
-

mro() -

-

return a type's method resolution order

-
-
Returns:
-
-list
-
-
-
-
- - - - - - -
Class Variable Details
-
- -

__bases__

-
-
-
-
-
Type:
-
- tuple - -
-
Value:
-
-
-(<type 'object'>,)                                                     
-
-
-
-
-
- -

__name__

-
-
-
-
-
Type:
-
- str - -
-
Value:
-
-
-'type'                                                                 
-
-
-
-
-
- - - - - - - - - - - - - - - - - - -
- -