Commit 72093034 authored by Robert Bradshaw's avatar Robert Bradshaw

Remove failing __getattr__ missing test.

May revert depending on what the final decision is for this slot.
parent e9f4217b
debug_disposal_code = 0
debug_temp_alloc = 0
debug_temp_alloc = 1
debug_coercion = 0
# Write comments into the C code that show where temporary variables
......@@ -7,7 +7,7 @@ debug_coercion = 0
debug_temp_code_comments = 0
# Write a call trace of the code generation phase into the C code
debug_trace_code_generation = 0
debug_trace_code_generation = 1
# Do not replace exceptions with user-friendly error messages
debug_no_exception_intercept = 0
......
......@@ -203,13 +203,6 @@ __doc__ = u"""
>>> vs0_str = vs0.__str__
>>> vs0_str()
VS __str__ 0
>>> # If you define either a __getattr__ or a __getattribute__, you get
>>> # only a __getattribute__ method. (Without #561, defining __getattr__
>>> # would give you both __getattr__ and __getattribute__.)
>>> g00 = object.__getattribute__(GetAttr(), '__getattr__')
Traceback (most recent call last):
...
AttributeError: 'special_methods_T561.GetAttr' object has no attribute '__getattr__'
>>> g01 = object.__getattribute__(GetAttr(), '__getattribute__')
>>> g01('attr')
GetAttr getattr 'attr'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment