These names are constants used inside and outside the module.
#================================================================ # Manifest constants #----------------------------------------------------------------
A compiled regular expression that matches zero or more whitespace characters.
WHITE_PATTERN = re.compile ( r'\s*' )
A regular expression that matches valid integers.
INT_REGEX = (
r'\s*' # Ignore leading whitespace
r'([\-+]?\s*)' # Optional sign and following whitespace
r'\d+' ) # One or more digits left of decimal
INT_PATTERN = re.compile ( INT_REGEX )