src/pylib/pystring/format

Search:
Group by:
Source   Edit  

Templates

template format(s: PyStr; argKw: varargs[untyped]): PyStr
str.format
Hint: if s is static (e.g. a str literal), this will be expanded at compile-time; otherwise at run-time, and exception may be raised for bad format syntax. so using static s is recommended.
Source   Edit  
template format[T](value: T; format_spec: PyStr = ""): PyStr
builtins.format Source   Edit  
template format_map(s: PyStr; map): PyStr
Source   Edit