Consts
ascii_letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
- Source Edit
ascii_lowercase = "abcdefghijklmnopqrstuvwxyz"
- Source Edit
ascii_uppercase = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- Source Edit
printable = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!\"#$%&\\\'()*+,-./:;<=>?@[\\\\]^_`{|}~ \t\n\r\v\f"
- Source Edit
punctuation = """!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~"""
- Source Edit
whitespace = " \t\n\r\v\f"
- Source Edit
Procs
proc get_identifiers(templ: Template): PyList[PyStr] {....raises: [Exception], tags: [RootEffect], forbids: [].}
-
Admonition: since Python 3.11Source Edit
Macros
macro safe_substitute(templ: Template; kws: varargs[untyped]): PyStr
- Source Edit
macro safe_substitute(templ: Template; mapping: Mapping; kws: varargs[untyped]): PyStr
- Source Edit
macro substitute(templ: Template; kws: varargs[untyped]): PyStr
- Source Edit
macro substitute(templ: Template; mapping: Mapping; kws: varargs[untyped]): PyStr
- Source Edit