-
-
Notifications
You must be signed in to change notification settings - Fork 31.1k
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
delattr __slots__ inconsistancy #51853
Comments
Everything I've read about __slots__, seen w/ them, etc, they're Specifically, for general attribute access/mangling, best I can tell, That said, delattr against slotted objects vs non slotted differs in a class nonslotted(object):
pass
class slotted(object):
__slots__ = ("monkeys",) try: I'm guessing this isn't intentional/desired? Confirmed on py2.6/py3.1 also; that said, I'd assume it affects all |
Thank you for the report. Fixed in r77157. |
Any chance of this landing in py2.7? It's really a nasty wrench in the |
2009/12/30 Brian Harring <report@bugs.python.org>:
It will be in 2.6.5, 2.7, 3.1.2, and 3.2. |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: