commit | aad6761ccea28e0a0da6761570b18adc72e01c37 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon May 08 17:31:04 2000 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon May 08 17:31:04 2000 +0000 |
tree | 731b55d5648f08e1bc755bcace1f836413cd8aae | |
parent | 0b095bc0929fb43157019c50e3e680a29ec94a65 [diff] [blame] |
The usual...
diff --git a/Lib/dos-8x3/py_compi.py b/Lib/dos-8x3/py_compi.py index e1d0d70..c54d61b 100755 --- a/Lib/dos-8x3/py_compi.py +++ b/Lib/dos-8x3/py_compi.py
@@ -7,7 +7,7 @@ MAGIC = imp.get_magic() def wr_long(f, x): - "Internal; write a 32-bit int to a file in little-endian order." + """Internal; write a 32-bit int to a file in little-endian order.""" f.write(chr( x & 0xff)) f.write(chr((x >> 8) & 0xff)) f.write(chr((x >> 16) & 0xff))