25 lines
447 B
Python
25 lines
447 B
Python
"""
|
|
Python polyfills for sys
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
from ..decorators import substitute_in_graph
|
|
|
|
|
|
__all__ = [
|
|
"intern",
|
|
"getrecursionlimit",
|
|
]
|
|
|
|
|
|
@substitute_in_graph(sys.intern, can_constant_fold_through=True)
|
|
def intern(string: str, /) -> str:
|
|
return string
|
|
|
|
|
|
@substitute_in_graph(sys.getrecursionlimit, can_constant_fold_through=True)
|
|
def getrecursionlimit() -> int:
|
|
return sys.getrecursionlimit()
|