module documentation

String manipulation
Function cram Omit part of a string if needed to make it fit in a maximum length.
Function replace Do a series of global replacements on a string. >>> replace("abc xyz", "xyz", "abc") 'abc abc'
Function stripid Remove the hexadecimal id from a Python object representation.
Variable LOGGER Undocumented
Variable _re_stripid Undocumented
def cram(text, maximum_length):
Omit part of a string if needed to make it fit in a maximum length.
Parameters
text:strUndocumented
maximum_length:intUndocumented
Returns
strUndocumented
def replace(text, *pairs):
Do a series of global replacements on a string. >>> replace("abc xyz", "xyz", "abc") 'abc abc'
Parameters
text:strUndocumented
pairs:strUndocumented
Returns
strUndocumented
def stripid(text):
Remove the hexadecimal id from a Python object representation.
Parameters
text:strUndocumented
Returns
strUndocumented
LOGGER =

Undocumented

_re_stripid =

Undocumented