From 6f2c114d62072665689a405a9459c79e8b7a802a Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Sat, 21 Feb 2026 02:34:38 +0100 Subject: [PATCH 1/2] Link to second mypy behavior issue in the README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7009e8c..16f911a 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ ## A Workaround -DateType is a [workaround for this -bug](https://github.com/python/mypy/issues/9015) to demonstrate that we could +DateType is a workaround for [two](https://github.com/python/mypy/issues/9015) +[bugs](https://github.com/python/mypy/issues/10067) to demonstrate that we could have a type-checking-time wrapper for `datetime` that doesn't change (or almost doesn't change) the implementation, but fixes up two very annoying behaviors of the stdlib `datetime` module: From 28bba1c2b8b070608ff6ae8fc66034f2f8f4a559 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Sat, 21 Feb 2026 02:38:54 +0100 Subject: [PATCH 2/2] Update README.rst with a link to second behavior issue --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 8788fc1..1f82793 100644 --- a/README.rst +++ b/README.rst @@ -5,8 +5,8 @@ DateType A Workaround ------------ -DateType is a `workaround for this -bug `_ to demonstrate that we could +DateType is a workaround for `two `_ +`bugs `_ to demonstrate that we could have a type-checking-time wrapper for ``datetime`` that doesn't change (or almost doesn't change) the implementation, but fixes up two very annoying behaviors of the stdlib ``datetime`` module: