Searched refs:shebang (Results 1 – 19 of 19) sorted by relevance
/external/python/cpython3/Lib/distutils/command/ |
D | build_scripts.py | 107 shebang = b"#!" + executable + post_interp + b"\n" 114 shebang.decode('utf-8') 118 "from utf-8".format(shebang)) 123 shebang.decode(encoding) 128 .format(shebang, encoding)) 130 outf.write(shebang)
|
/external/python/cpython3/Doc/library/ |
D | zipapp.rst | 50 copied to the target archive (or the contents of its shebang line will be 130 a "shebang" line at the start of the archive. On POSIX, this will be 132 launcher. Omitting the *interpreter* results in no shebang line being 190 To replace the shebang line on an existing archive, create a modified archive 224 shebang line for users of Python 3.5, for example. 237 zip application format uses this ability to prepend a standard POSIX "shebang" 242 1. An optional shebang line, containing the characters ``b'#!'`` followed by an 244 name can be anything acceptable to the OS "shebang" processing, or the Python 252 If an application archive has a shebang line, it may have the executable bit set
|
D | venv.rst | 76 virtual environments have a "shebang" line which points to the virtual 78 that interpreter regardless of the value of ``PATH``. On Windows, "shebang"
|
D | configparser.rst | 584 ... shebang = 599 >>> print(parser['hashes']['shebang'])
|
/external/markdown/docs/extensions/ |
D | CodeHilite.txt | 43 If the first line of the codeblock contains a shebang, the language is derived 57 If the first line contains a shebang, but the shebang line does not contain a
|
/external/python/cpython3/Lib/ |
D | zipapp.py | 51 shebang = b'#!' + interpreter.encode(shebang_encoding) + b'\n' 52 f.write(shebang)
|
/external/python/cpython3/PC/ |
D | launcher.c | 706 wchar_t *shebang; member 910 for (vpp = builtin_virtual_paths; vpp->shebang; ++vpp) { in parse_shebang() 911 plen = wcslen(vpp->shebang); in parse_shebang() 912 if (wcsncmp(shebang_line, vpp->shebang, plen) == 0) { in parse_shebang() 922 if (vpp->shebang == NULL) { in parse_shebang()
|
/external/freetype/src/tools/ |
D | update-copyright-year | 17 # the shebang, using the first `perl' program in the shell's path instead.]
|
/external/python/cpython3/Doc/using/ |
D | windows.rst | 552 "shebang" line. Linux and other Unix like operating systems have native 558 To allow shebang lines in Python scripts to be portable between Unix and 577 shebang lines starting with ``/usr``. 584 The ``/usr/bin/env`` form of shebang line has one further special property. 589 Arguments in shebang lines 592 The shebang lines can also specify additional options to be passed to the 593 Python interpreter. For example, if you have a shebang line: 628 For example, a shebang line of ``#!python`` has no version qualifier, while
|
/external/python/cpython3/Doc/tutorial/ |
D | interpreter.rst | 154 :ref:`UNIX "shebang" line <tut-scripts>`. In this case, the encoding
|
/external/python/cpython2/Doc/howto/ |
D | webservers.rst | 170 first line of the script (called shebang) and tries to run the program 188 * On Unix-like systems, the path to the interpreter in the shebang 194 where it is installed. Once you know the path, you can change the shebang 199 write this also into UTF-8 files. The BOM interferes with the shebang line,
|
/external/harfbuzz_ng/ |
D | CMakeLists.txt | 329 # In Visual Studio builds, shebang lines are not supported
|
/external/python/cpython3/Tools/msi/ |
D | README.txt | 506 makes Python files respect shebang lines by default and also avoids
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 156 command line arguments or a config file). Handling of shebang lines
|
D | 3.3.rst | 300 a Unix-style "shebang line" in the Python script.
|
/external/valgrind/ |
D | NEWS | 723 231257 Valgrind omits path when executing script from shebang line
|
/external/python/cpython2/Misc/ |
D | NEWS | 2362 - Issue #19936: Added executable bits or shebang lines to Python scripts which 2363 requires them. Disable executable bits and shebang lines in test and
|
/external/python/cpython3/Misc/ |
D | HISTORY | 2784 - Issue #19936: Added executable bits or shebang lines to Python scripts which 2785 requires them. Disable executable bits and shebang lines in test and 2788 shebang lines in the unittestgui and checkpip scripts. 9652 binary mode, but ensure that the shebang is decodable from UTF-8 and from the
|
/external/strace/ |
D | ChangeLog | 3246 * maint/update_copyright_years.sh: Add -efu to shebang. Adjust
|