Lines Matching refs:shebang
107 shebang = b"#!" + executable + post_interp + b"\n"
109 # it gets a #coding:xxx cookie. The shebang has to be the
111 # written before. So the shebang has to be decodable from
114 shebang.decode('utf-8')
117 "The shebang ({!r}) is not decodable "
118 "from utf-8".format(shebang))
120 # #coding:xxx cookie), the shebang has to be decodable from
123 shebang.decode(encoding)
126 "The shebang ({!r}) is not decodable "
128 .format(shebang, encoding))
130 outf.write(shebang)