May revert depending on what the final decision is for this slot.
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
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
>>> 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'