Codebase list dh-python / d1d488b
Fix minor spelling errors Stuart Prescott authored 1 year, 7 months ago Stefano Rivera committed 1 year, 7 months ago
2 changed file(s) with 5 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
124124
125125 @memoize
126126 def load(impl):
127 """Load iformation about installed Python distributions.
127 """Load information about installed Python distributions.
128128
129129 :param impl: interpreter implementation, f.e. cpython2, cpython3, pypy
130130 :type impl: str
204204
205205
206206 def execute(command, cwd=None, env=None, log_output=None, shell=True):
207 """Execute external shell commad.
208
209 :param cdw: currennt working directory
207 """Execute external shell command.
208
209 :param cdw: current working directory
210210 :param env: environment
211211 :param log_output:
212212 * opened log file or path to this file, or
213213 * None if output should be included in the returned dict, or
214 * False if output should be redirectored to stdout/stderr
214 * False if output should be redirected to stdout/stderr
215215 """
216216 args = {'shell': shell, 'cwd': cwd, 'env': env}
217217 close = False