Lines Matching refs:shebang
24 # The Windows launcher defaults to UTF-8 when parsing shebang lines if the
47 """Write a shebang line."""
49 shebang = b'#!' + interpreter.encode(shebang_encoding) + b'\n'
50 f.write(shebang)
54 """Copy an application archive, modifying the shebang line."""
56 # Skip the shebang line from the source.
60 # Discard the initial 2 bytes and the rest of the shebang line.
66 # If there was no shebang, "first_2" contains the first 2 bytes
88 The created application archive will have a shebang line specifying
89 that it should run with INTERPRETER (there will be no shebang line if
171 "(default: no shebang line).")