[Python-checkins] python/nondist/sandbox/datetime doc.txt,1.39,1.40

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Tue, 10 Dec 2002 09:01:34 -0800


Update of /cvsroot/python/python/nondist/sandbox/datetime
In directory sc8-pr-cvs1:/tmp/cvs-serv12332

Modified Files:
	doc.txt 
Log Message:
Added "implement tzinfo base class" issue.  The FixedOffset semantics
are probably going to be most useful to most people, so it would be
nice to supply them.  The implementation of *tz classes also needs a
way to verify that their tzinfo argument implements the tzinfo
interface, and forcing inheritance from a base tzinfo class is a clean
and efficient way to enable that.


Index: doc.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/datetime/doc.txt,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** doc.txt	9 Dec 2002 23:16:38 -0000	1.39
--- doc.txt	10 Dec 2002 17:01:21 -0000	1.40
***************
*** 1,4 ****
--- 1,7 ----
  TODO/OPEN
  =========
+ - Implement a base tzinfo class, capturing the example FixedOffset
+   semantics.  Variant tzinfo classes must subclass from this.
+ 
  - datetimetz needs a C implementation.