Archivos manifest, escapar espacio de nombres
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
def _parse_template_line(self, line):
words = line.split()
action = words[0]
if action in ('include', 'exclude', 'global-include', 'global-exclude'):
elif action in ('recursive-include', 'recursive-exclude'):
if len(words) < 3: raise DistutilsTemplateError, \ "'%s' expects <dir> <pattern1> <pattern2> ..." % action dir = convert_path(words[1])
patterns = map(convert_path, words[2:])