summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-01-24 09:38:26 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-01-24 09:38:26 (GMT)
commit7b7ce7854c2e36d04adb42beec5f673071cf1fd4 (patch)
tree4f329e6b777309aa8bb79ea8b79d0072fb50766f /Lib
parent7070094d7ffd4308e12188b39d0f346473581335 (diff)
downloadcpython-7b7ce7854c2e36d04adb42beec5f673071cf1fd4.zip
cpython-7b7ce7854c2e36d04adb42beec5f673071cf1fd4.tar.gz
cpython-7b7ce7854c2e36d04adb42beec5f673071cf1fd4.tar.bz2
Fix issue1789: The tutorial contained a misuse of the struct module.
(also remove an unneeded import struct from test_largefile)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_largefile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_largefile.py b/Lib/test/test_largefile.py
index 4dca97f..5731892 100644
--- a/Lib/test/test_largefile.py
+++ b/Lib/test/test_largefile.py
@@ -6,7 +6,7 @@
#----------------------------------------------------------------------
from test import test_support
-import os, struct, stat, sys
+import os, stat, sys
try:
import signal