Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Improve the grammar in windows.rst (GH-1330) | 80a3da4d4aad0b51893e1e2f696b6252eca80e07 | Wieland Hoffmann | 2017-04-28 16:12:57 |
bpo-30104: Only use -fno-strict-aliasing on dtoa.c (#1340) | 826f83f1d562a7b878499bc3af2267cfdfe5f2f9 | Victor Stinner | 2017-04-28 13:07:10 |
bpo-30174: Remove duplicate definition from pickletools (#1301) | 5a4e3d8f9c37e700402b23fafbfc413e5ca3113d | Jelle Zijlstra | 2017-04-27 16:05:26 |
bpo-30175: Skip client cert tests of test_imaplib (#1320) | 5bccca58b9b2b3a925b16750bedbd907695ea8d7 | Victor Stinner | 2017-04-27 15:30:13 |
bpo-27200: Fix several doctests (GH-604) | e65fcde85abf6617508f2d6b77020e24b8ca6f6b | Marco Buttu | 2017-04-27 12:23:34 |
Use the correct name for ISO in Unicode HOWTO. (#1312) | 6fde770e4e940c19cd62de0b6aeb77840690843e | Jesse Gonzalez | 2017-04-27 05:12:17 |
bpo-28415: Note 0 conversion different between Python and C (#885) | 88c38b32b761cb566759b8ad96704bff590a1de9 | Louie Lu | 2017-04-27 03:36:35 |
bpo-30142: Remove "callable" from the 2to3fixer documentation. (GH-1296) | a90b990480f45b6a0ad02d43455cf8b620bac9c5 | Dong-hee Na | 2017-04-26 16:16:21 |
bpo-30101: Add support for curses.A_ITALIC. (#1015) | ab7886b78574d9224b26dc3a5b08e5c105fbbf11 | Eijebong | 2017-04-26 15:17:12 |
bpo-30131: test_logging now joins queue threads (#1298) | 8ca2f2faefa8dba323a2e4c4b86efb633d7a53cf | Victor Stinner | 2017-04-26 13:56:25 |
timemodule.c: Cast PyUnicode_AsUTF8() to char* (#1294) | 6e676954de7c4f3f06dd5b56842c9a2c931a1cab | Victor Stinner | 2017-04-26 11:51:48 |
bpo-29974: Improve typing.TYPE_CHECKING example (GH-982) | 87c07fe9d908d0a2143fcc8369255c6ff3241503 | Mathias Rav | 2017-04-26 10:49:45 |
bpo-28698: Fix c_wchar_p doc example (GH-1160) | 0d637e236d7099f7b724026c8cb7bd83d8e12e6b | Louie Lu | 2017-04-26 08:15:05 |
bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271) | c6db4811f9ea3aeff0e1fafe1c60a22835ef359e | csabella | 2017-04-26 05:47:01 |
bpo-30107: Make SuppressCrashReport quiet on macOS (#1279) | d819ad9832292d854e9710493ecdf959b69802e3 | Victor Stinner | 2017-04-25 22:55:08 |
bpo:29950: Rename SlotWrapperType to WrapperDescriptorType (GH-926) | 08c16016e2a2d1368d001ddebfe9ca92465773c4 | Jim Fasarakis-Hilliard | 2017-04-25 18:26:36 |
bpo-28851: Improve namedtuple documentation (GH-1274) | 97bf722fcd1de1236824377e052369dc7686b644 | csabella | 2017-04-25 16:14:45 |
bpo-29617: Remove Python 3.3 support from asyncio (GH-232) | 3e2ad8ec61a322370a6fbdfb2209cf74546f5e08 | INADA Naoki | 2017-04-25 01:57:18 |
bpo-30132: distutils test_build_ext() uses temp_cwd() (#1278) | f6448e5d65c349576df6e83b8324b9c208e77615 | Victor Stinner | 2017-04-25 00:11:09 |
tmtotuple(): use time_t for gmtoff (#1276) | 0d659e5614cad512a1940125135b443b3eecb5d7 | Victor Stinner | 2017-04-24 23:22:42 |
File | Lines added | Lines deleted |
---|---|---|
Doc/using/windows.rst | 3 | 3 |
File Doc/using/windows.rst changed (mode: 100644) (index 3e4b70e8a1..68687e9f3e) | |||
... | ... | Shebang Lines | |
550 | 550 | ||
551 | 551 | If the first line of a script file starts with ``#!``, it is known as a | If the first line of a script file starts with ``#!``, it is known as a |
552 | 552 | "shebang" line. Linux and other Unix like operating systems have native | "shebang" line. Linux and other Unix like operating systems have native |
553 | support for such lines and are commonly used on such systems to indicate how | ||
554 | a script should be executed. This launcher allows the same facilities to be | ||
555 | using with Python scripts on Windows and the examples above demonstrate their | ||
553 | support for such lines and they are commonly used on such systems to indicate | ||
554 | how a script should be executed. This launcher allows the same facilities to | ||
555 | be used with Python scripts on Windows and the examples above demonstrate their | ||
556 | 556 | use. | use. |
557 | 557 | ||
558 | 558 | To allow shebang lines in Python scripts to be portable between Unix and | To allow shebang lines in Python scripts to be portable between Unix and |