Home | History | Annotate | Download | only in distutils

Lines Matching refs:script

113     directory separator.  Needed because filenames in the setup script are
377 temporary script and executing it. Normally, you should let
379 the source for details). The 'direct' flag is used by the script
400 # "Indirect" byte-compilation: write a temporary script and then
409 log.info("writing byte-compilation script '%s'", script_name)
412 script = os.fdopen(script_fd, "w")
414 script = open(script_name, "w")
416 script.write("""\
422 # safety's sake (script should be more robust in the face of
435 script.write(string.join(map(repr, py_files), ",\n") + "]\n")
436 script.write("""
443 script.close()
455 # right here, right now. Note that the script generated in indirect