Almenon / Almenon/AREPL-backend
add handler for tuple
- Vorherrschende Sprache
- Python
- Sterne
- 14
- Forks
- 8
- Ø Merge
- 4 T. 19 Std.
- Gemergte PRs (30 T.)
- 4
Beschreibung
add the handler to https://github.com/Almenon/AREPL-backend/blob/master/python/arepl_custom_handlers.py
```python
from collections import namedtuple
Person = namedtuple('Person', 'first_name last_name zip_code')
p1 = Person('Joe', 'Schmoe', '93002')
print(dir(p1))
print(p1.__repr__)
```
Named tuples are not represented well in the variable viewer - the important part of the tuple is the py/seq and py/newargs isn't really necessary.
**vars**:
```
-{
Person: -{
py/type: "__main__.Person"
},
p1: -{
py/object: "__main__.Person",
py/newargs: -{
py/tuple: +[3 items]
},
py/seq: -[
"Joe",
"Schmoe",
"93002"
]
}
}
```
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Bewertung
Dieses Issue wurde noch nicht bewertet.