| 617 | # Issue #113570: repr() should not be fooled |
| 618 | # by a shadowed builtin function |
| 619 | class list: |
| 620 | def __repr__(self): |
| 621 | return "not builtins.list" |
| 622 | |
| 623 | self.assertEqual(r(list()), "not builtins.list") |
| 624 |
no outgoing calls
searching dependent graphs…