Lines Matching +full:sub +full:- +full:spaces
86 - It will print an "Issuing: shutil.rmtree" message.
94 print_string = re.sub(
97 gp.qprintn(re.sub(r", quiet[ ]?=.*", ")", print_string))
106 - It will print an "Issuing: os.chdir" message.
213 "Programmer error - The mod_name passed to"
263 "Programmer error - The mod_name passed to"
312 # Make the property names case-sensitive.
332 … any that begin with 0 or more spaces followed by the pound sign ("#").
408 return re.sub("'", "'\\''", buffer)
421 # Spaces
429 # Bash re-direction: >, <
514 var1: -15
537 neg_bit_mask = 2 ** (bit_width - 1)
539 return ((2**bit_width) - number) * -1
546 …Get and return a list of pids representing all first-generation processes that are the children of…
571 "ps --no-headers --ppid " + str(os.getpid()) + " -o pid,args"
582 # 30795 /bin/bash -c ps --no-headers --ppid 30672 -o pid,args > /tmp/tmpqqorWY
587 "egrep -v '"
591 + " | cut -c1-5",
594 …# Split the output buffer by line into a list. Strip each element of extra spaces and convert each
611 buffer = re.sub(regex, "\\1},\\2", buffer, 1)
613 buffer = "[" + re.sub(",([\r\n])$", "\\1}", buffer, 1) + "]"
678 sys_version = re.sub("rc[^ ]+", "", sys_version).split(" ")[0]
679 # Remove any non-numerics, etc. (e.g. "2.7.15+" becomes ""2.7.15").
680 return re.sub("[^0-9\\.]", "", sys_version)
714 …delim A delimiter to be used to separate the sub-components of the file …
715 suffix A suffix to include as the last sub-component of the file name.