8000 gh-96663: Add a better error message for __dict__-less classes setattr by Gobot1234 · Pull Request #103232 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-96663: Add a better error message for __dict__-less classes setattr #103232

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jul 22, 2023
Prev Previous commit
Fix import order
  • Loading branch information
Gobot1234 authored Jul 18, 2023
commit 60e1f693b8ccc0772f29745deda8a1e90baafc33
2 changes: 1 addition & 1 deletion Lib/test/test_descrtut.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
# of much interest anymore), and a few were fiddled to make the output
# deterministic.

from test.support import sortdict
import doctest
import unittest
from test.support import sortdict


class defaultdict(dict):
Expand Down
0