From 4a03a68226d9ec8858bfb8ff8044b6f7991daf22 Mon Sep 17 00:00:00 2001 From: Klaus Rettinghaus Date: Wed, 18 Jun 2025 21:52:33 +0200 Subject: [PATCH] fix Python2 leftofers --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8fe2de1..4b4fb2d 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ UncertainOrApproximate: '1979-08~' # normalised string representation (some different EDTF strings have identical meanings) >>> ->>> unicode(e) -u'1979-08~' +>>> str(e) +'1979-08~' # Derive Python date objects @@ -446,7 +446,7 @@ False ### Comparisons -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. +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. ## Django ORM field