diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-25 17:56:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-25 17:56:46 (GMT) |
commit | e93af80749f6f8e33e1eb122bc367ae8ef26b10a (patch) | |
tree | b9e5992cdaca65094c7c203980772afc08a6d732 /Misc/NEWS.d | |
parent | 44eb329490aece97a0e0d8f6b904aba10e9354ad (diff) | |
download | cpython-e93af80749f6f8e33e1eb122bc367ae8ef26b10a.zip cpython-e93af80749f6f8e33e1eb122bc367ae8ef26b10a.tar.gz cpython-e93af80749f6f8e33e1eb122bc367ae8ef26b10a.tar.bz2 |
[3.12] gh-94722: fix DocTest.__eq__ for case of no line number on one side (GH-112385) (#112400)
gh-94722: fix DocTest.__eq__ for case of no line number on one side (GH-112385)
(cherry picked from commit fbb9027a037ff1bfaf3f596df033ca45743ee980)
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-11-24-21-00-24.gh-issue-94722.GMIQIn.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-11-24-21-00-24.gh-issue-94722.GMIQIn.rst b/Misc/NEWS.d/next/Library/2023-11-24-21-00-24.gh-issue-94722.GMIQIn.rst new file mode 100644 index 0000000..41bd57f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-11-24-21-00-24.gh-issue-94722.GMIQIn.rst @@ -0,0 +1,2 @@ +Fix bug where comparison between instances of :class:`~doctest.DocTest` fails if +one of them has ``None`` as its lineno. |