You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# normalised string representation (some different EDTF strings have identical meanings)
28
28
>>>
29
-
>>>unicode(e)
30
-
u'1979-08~'
29
+
>>>str(e)
30
+
'1979-08~'
31
31
32
32
# Derive Python date objects
33
33
@@ -446,7 +446,7 @@ False
446
446
447
447
### Comparisons
448
448
449
-
Two EDTF dates are considered equal if their `unicode()` representations are the same. An EDTF date is considered greater than another if its `lower_strict` value is later.
449
+
Two EDTF dates are considered equal if their `str()` representations are the same. An EDTF date is considered greater than another if its `lower_strict` value is later.
0 commit comments