diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-09 21:40:30 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-09 21:40:30 (GMT) |
commit | ab9ba27dc066adc6423ea137b9481cf524d10ffd (patch) | |
tree | c49709063ec8de0eae358ef462e9fe5faa0c44a0 /Lib/test/test_gzip.py | |
parent | c7ca3ffba3d41f24f6f66d40391a044f199785ac (diff) | |
download | cpython-ab9ba27dc066adc6423ea137b9481cf524d10ffd.zip cpython-ab9ba27dc066adc6423ea137b9481cf524d10ffd.tar.gz cpython-ab9ba27dc066adc6423ea137b9481cf524d10ffd.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_gzip.py')
-rw-r--r-- | Lib/test/test_gzip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gzip.py b/Lib/test/test_gzip.py index 6d69c3f..a5660a9 100644 --- a/Lib/test/test_gzip.py +++ b/Lib/test/test_gzip.py @@ -71,7 +71,7 @@ f.close() # Try seek, write test f = gzip.GzipFile(filename, 'w') for pos in range(0, 256, 16): - f.seek(pos) + f.seek(pos) f.write('GZ\n') f.close() |