summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libdatetime.tex
Commit message (Collapse)AuthorAgeFilesLines
...
* astimezone(): document that None is an OK argument.Tim Peters2002-12-271-4/+5
|
* Make comparison and subtraction of aware objects ignore tzinfo if theTim Peters2002-12-271-23/+29
| | | | | | operands have identical tzinfo members (meaning object identity -- "is"). I misunderstood the intent here, reading wrong conclusion into conflicting clues.
* Implemented datetime.astimezone() and datetimetz.astimezone().Tim Peters2002-12-251-0/+22
|
* Removed blurb admonishing users to raise an exception if the datetimeTim Peters2002-12-241-2/+1
| | | | argument to a tzinfo method doesn't have a matching tzinfo member.
* Added note about technical pickle limitation on tzinfo instances.Tim Peters2002-12-241-1/+6
|
* tzinfo.{utcoffset,dst} can return timedelta (or integer or None).Tim Peters2002-12-241-15/+21
| | | | {timetz,datetimetz}.{uctcoffset,dst} do return timedelta (or None).
* Implemented .replace() methods for date, datetime, datetimetz, time andTim Peters2002-12-241-1/+28
| | | | timetz.
* Brought the strftime explanation into synch with the plain-text sandboxTim Peters2002-12-231-45/+56
| | | | | docs, and moved its section to the end (before the "C API" section, which latter doesn't really belong in the Library manual).
* Lots of markup changes. This is still pretty sad, but passes LaTeXFred Drake2002-12-231-483/+558
| | | | and is mostly readable.
* Check in current, unfinished, draft of datetime docsAndrew M. Kuchling2002-12-181-0/+1139
(Fred, don't bother to add to lib.tex or to proofread this yet.)