diff babel/core.py @ 17:aa33ad077d24

Minor date formatting improvements.
author cmlenz
date Thu, 31 May 2007 14:20:04 +0000
parents 29ef15a6fd75
children 6c2c9fc7d787
line wrap: on
line diff
--- a/babel/core.py
+++ b/babel/core.py
@@ -249,7 +249,7 @@
     days = property(days, doc="""\
         Locale display names for weekdays.
         
-        >>> Locale('de', 'DE').days['format']['wide'][4]
+        >>> Locale('de', 'DE').days['format']['wide'][3]
         u'Donnerstag'
         
         :type: `dict`
@@ -296,9 +296,9 @@
         The first day of a week.
         
         >>> Locale('de', 'DE').first_week_day
-        1
+        0
         >>> Locale('en', 'US').first_week_day
-        7
+        6
         
         :type: `int`
         """)
@@ -309,7 +309,7 @@
         The day the weekend starts.
         
         >>> Locale('de', 'DE').weekend_start
-        6
+        5
         
         :type: `int`
         """)
@@ -320,7 +320,7 @@
         The day the weekend ends.
         
         >>> Locale('de', 'DE').weekend_end
-        7
+        6
         
         :type: `int`
         """)
Copyright (C) 2012-2017 Edgewall Software