Home
last modified time | relevance | path

Searched refs:WS_TRANS (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dfancy_getopt.py408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace)) variable
423 text = string.translate(text, WS_TRANS)
/external/python/cpython3/Lib/distutils/
Dfancy_getopt.py373 WS_TRANS = {ord(_wschar) : ' ' for _wschar in string.whitespace} variable
387 text = text.translate(WS_TRANS)