[Zope3-checkins] SVN: Zope3/trunk/src/zope/i18n/locales/__init__.py Converted XXX to TODO.

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Jul 13 12:40:26 EDT 2004


Log message for revision 26460:
  Converted XXX to TODO.
  
  Updated doc string.
  


Changed:
  U   Zope3/trunk/src/zope/i18n/locales/__init__.py


-=-
Modified: Zope3/trunk/src/zope/i18n/locales/__init__.py
===================================================================
--- Zope3/trunk/src/zope/i18n/locales/__init__.py	2004-07-13 16:39:48 UTC (rev 26459)
+++ Zope3/trunk/src/zope/i18n/locales/__init__.py	2004-07-13 16:40:26 UTC (rev 26460)
@@ -345,7 +345,7 @@
         """See zope.i18n.interfaces.ILocaleCalendar"""
         day = datetime.weekday()
         time = datetime.time()
-        # XXX: todo
+        # TODO: Implement this method
         return False
 
     def getFirstWeekDayName(self):
@@ -604,14 +604,14 @@
         pieces = filter(None,
                         (id.language, id.script, id.territory, id.variant))
         id_string = '_'.join(pieces)
-        # XXX: What about keys??? Where do I get this info from?
+        # TODO: What about keys??? Where do I get this info from?
         pieces = [key+'='+type for key, type in ()]
         if pieces:
             id_string += '@' + ','.join(pieces)
         return id_string
 
     def getInheritedSelf(self):
-        """See XXX...
+        """See zope.i18n.interfaces.locales.ILocaleInheritance
 
         This is the really interesting method that looks up the next (more
         general) Locale object. This is used in case this locale object does



More information about the Zope3-Checkins mailing list