| 50 | |
| 51 | # Test attribute access in expressions |
| 52 | class Person: |
| 53 | def __init__(self, name): |
| 54 | self.name = name |
| 55 | |
| 56 | def upper(self): |
| 57 | return self.name.upper() |
| 58 | |
| 59 | person = Person("Alice") |
| 60 | t = t"Name: {person.name}" |
no outgoing calls
searching dependent graphs…