Skip to content
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

Fix #7. Make the Python Acquirer cooperatively call super, and test this. #8

Closed
wants to merge 1 commit into from
Closed

Fix #7. Make the Python Acquirer cooperatively call super, and test this. #8

wants to merge 1 commit into from

Conversation

jamadden
Copy link
Member

@jamadden jamadden commented May 5, 2015

Also provides a more informative traceback if lookup failed in that case, which assists debugging if the inheritance hierarchy is complex.

…his. Also provides a more informative traceback if lookup failed in that case which assists debugging if the inheritance hierarchy is complex.
@@ -684,11 +693,12 @@ class _Acquirer(ExtensionClass.Base):

def __getattribute__(self, name):
try:
return ExtensionClass.Base.__getattribute__(self, name)
return super(_Acquirer,self).__getattribute__(name)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: space after comma.

@tseaver
Copy link
Member

tseaver commented May 19, 2015

Subsumed (including my feedback) into #10.

@tseaver tseaver closed this May 19, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants