mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04: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()
|