diff options
author | Guido van Rossum <guido@python.org> | 1999-04-08 20:27:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-04-08 20:27:54 (GMT) |
commit | 9a744a9dd771ee8997bdebaf47ff999b5adc9733 (patch) | |
tree | 5060172f273b17409371c9ad1441b2a8bbc315be /Lib/dos-8x3/test_gzi.py | |
parent | 6d0de99d8da806798ce0b896159bd07fce71c0dc (diff) | |
download | cpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.zip cpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.tar.gz cpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.tar.bz2 |
The usual
Diffstat (limited to 'Lib/dos-8x3/test_gzi.py')
-rw-r--r-- | Lib/dos-8x3/test_gzi.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Lib/dos-8x3/test_gzi.py b/Lib/dos-8x3/test_gzi.py new file mode 100644 index 0000000..3ea2ba9 --- /dev/null +++ b/Lib/dos-8x3/test_gzi.py @@ -0,0 +1,30 @@ + +import sys, os +import gzip, tempfile + +filename = tempfile.mktemp() + +data1 = """ int length=DEFAULTALLOC, err = Z_OK; + PyObject *RetVal; + int flushmode = Z_FINISH; + unsigned long start_total_out; + +""" + +data2 = """/* zlibmodule.c -- gzip-compatible data compression */ +/* See http://www.cdrom.com/pub/infozip/zlib/ */ +/* See http://www.winimage.com/zLibDll for Windows */ +""" + +f = gzip.GzipFile(filename, 'wb') ; f.write(data1) ; f.close() + +f = gzip.GzipFile(filename, 'rb') ; d = f.read() ; f.close() +assert d == data1 + +# Append to the previous file +f = gzip.GzipFile(filename, 'ab') ; f.write(data2) ; f.close() + +f = gzip.GzipFile(filename, 'rb') ; d = f.read() ; f.close() +assert d == data1+data2 + +os.unlink( filename ) |