mirror of
https://github.com/encounter/tp.git
synced 2026-03-30 11:40:53 -07:00
10 lines
144 B
Python
10 lines
144 B
Python
|
|
from .demangle import *
|
|
from .demangle_test import *
|
|
|
|
|
|
def demangle(s: str) -> str:
|
|
p = ParseCtx(s)
|
|
p.demangle()
|
|
return p.to_str()
|