diff options
author | ravi140222 <100869741+ravi140222@users.noreply.github.com> | 2022-05-12 15:26:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-12 15:26:11 (GMT) |
commit | 079f0dd7191fbadd4c3a5899b6af12492e84d2b4 (patch) | |
tree | a3fffb331db6c4cfc1affa57c3de19ba90eaabf3 /Misc | |
parent | 8a0d9a6bb77a72cd8b9ece01b7c1163fff28029a (diff) | |
download | cpython-079f0dd7191fbadd4c3a5899b6af12492e84d2b4.zip cpython-079f0dd7191fbadd4c3a5899b6af12492e84d2b4.tar.gz cpython-079f0dd7191fbadd4c3a5899b6af12492e84d2b4.tar.bz2 |
gh-91578: improved error message when trying to instantiate an abstract class with missing methods (gh-47246)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-04-15-22-12-53.gh-issue-91578.rDOtyK.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-04-15-22-12-53.gh-issue-91578.rDOtyK.rst b/Misc/NEWS.d/next/Core and Builtins/2022-04-15-22-12-53.gh-issue-91578.rDOtyK.rst new file mode 100644 index 0000000..4dc738a --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-04-15-22-12-53.gh-issue-91578.rDOtyK.rst @@ -0,0 +1 @@ +Updates the error message for abstract class. |