Home | Trees | Index | Help |
|
---|
Module datetime :: Class time |
|
object
--+
|
time
time([hour[, minute[, second[, microsecond[, tzinfo]]]]]) --> a time object
All arguments are optional. tzinfo may be None, or an instance of a tzinfo subclass. The remaining arguments may be ints or longs.Method Summary | |
---|---|
Return self.tzinfo.dst(self). | |
Return string in ISO 8601 format, HH:MM:SS[.mmmmmm][+HH:MM]. | |
Return time with new specified fields. | |
format -> strftime() style string. | |
Return self.tzinfo.tzname(self). | |
Return self.tzinfo.utcoffset(self). |
Class Variable Summary | |
---|---|
getset_descriptor |
hour = <attribute 'hour' of 'datetime.time' objects>
|
time |
max = datetime.time(23, 59, 59, 999999)
|
getset_descriptor |
microsecond = <attribute 'microsecond' of 'datetime.time...
|
time |
min = datetime.time(0, 0)
|
getset_descriptor |
minute = <attribute 'minute' of 'datetime.time' objects>
|
timedelta |
resolution = datetime.timedelta(0, 0, 1)
|
getset_descriptor |
second = <attribute 'second' of 'datetime.time' objects>
|
getset_descriptor |
tzinfo = <attribute 'tzinfo' of 'datetime.time' objects>
|
Method Details |
---|
dst(...)Return self.tzinfo.dst(self). |
isoformat(...)Return string in ISO 8601 format, HH:MM:SS[.mmmmmm][+HH:MM]. |
replace(...)Return time with new specified fields. |
strftime(...)format -> strftime() style string. |
tzname(...)Return self.tzinfo.tzname(self). |
utcoffset(...)Return self.tzinfo.utcoffset(self). |
Class Variable Details |
---|
hour
|
max
|
microsecond
|
min
|
minute
|
resolution
|
second
|
tzinfo
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Tue Feb 6 10:53:33 2007 | http://epydoc.sf.net |