X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=trunk%2Fpsycopg2%2Fdoc%2Fapi%2Fpublic%2Fdatetime.tzinfo-class.html;fp=trunk%2Fpsycopg2%2Fdoc%2Fapi%2Fpublic%2Fdatetime.tzinfo-class.html;h=080afa2ed1d9b84fc115c81c2870062f20b7ecc7;hb=5a4c1b1278ffa01e630fde47f7c54888ed20a576;hp=0000000000000000000000000000000000000000;hpb=cee5ab52df1c9f38b6eaff2dd354cb22f59028c7;p=plcapi.git diff --git a/trunk/psycopg2/doc/api/public/datetime.tzinfo-class.html b/trunk/psycopg2/doc/api/public/datetime.tzinfo-class.html new file mode 100644 index 0000000..080afa2 --- /dev/null +++ b/trunk/psycopg2/doc/api/public/datetime.tzinfo-class.html @@ -0,0 +1,239 @@ + + + + + datetime.tzinfo + + + + + + + + + + + + + + + + + + + +
+ + Module datetime :: + Class tzinfo +
+
+ + +
[show private | hide private]
[frames | no frames]
+ + +

Type tzinfo

+ +
+object --+
+         |
+        tzinfo
+

+ +
Known Subclasses:
+
+ FixedOffsetTimezone, + LocalTimezone
+ +
+ +

Abstract base class for time zone info objects.

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method Summary
 __getattribute__(...) +
+x.__getattribute__('name') <==> x.name
 __new__(T, + S, + ...) +
+Return a new object with type S, a subtype of T...
 __reduce__(...) +
+-> (cls, state)
 dst(...) +
+datetime -> DST offset in minutes east of UTC.
 fromutc(...) +
+datetime in UTC -> datetime in local time.
 tzname(...) +
+datetime -> string name of time zone.
 utcoffset(...) +
+datetime -> minutes east of UTC (negative for west of UTC).
    Inherited from object
 __init__(...) +
+x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 __delattr__(...) +
+x.__delattr__('name') <==> del x.name
 __hash__(x) +
+Return hash(x)...
 __reduce_ex__(...) +
+helper for pickle
 __repr__(x) +
+Return repr(x)...
 __setattr__(...) +
+x.__setattr__('name', value) <==> x.name = value
 __str__(x) +
+Return str(x)...

+ + + + + + +
Method Details
+ + +
+

__getattribute__(...) +

+

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

+
+
Overrides:
+
__builtin__.object.__getattribute__
+
+
+
+ + +
+

__new__(T, + S, + ...) +

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

__reduce__(...) +

+

-> (cls, state)

+
+
Overrides:
+
__builtin__.object.__reduce__
+
+
+
+ + +
+

dst(...) +

+

datetime -> DST offset in minutes east of UTC.

+
+
+
+ + +
+

fromutc(...) +

+

datetime in UTC -> datetime in local time.

+
+
+
+ + +
+

tzname(...) +

+

datetime -> string name of time zone.

+
+
+
+ + +
+

utcoffset(...) +

+

datetime -> minutes east of UTC (negative for west of UTC).

+
+
+
+
+ + + + + + + + + + + + + + + + + + +
+ +