Swedish cal. Valid check for the Sw. cal not working yet.

svn: r11688
This commit is contained in:
Peter Landgren 2009-01-22 17:07:52 +00:00
parent f5aaef6312
commit 3b7f4b6e10

View File

@ -86,7 +86,8 @@ def swedish_valid(date_tuple):
if date_tuple == (1712,2,30): # extra day was inserted 1712
valid = True
if date_tuple >= (1712,3,1): # back to julian
valid = False
valid = False
valid = True
return valid
def french_valid(date_tuple):