Skip to content

Commit 4f153ed

Browse files
committed
Merge branch 'release-1.1.0'
2 parents 7342868 + 02c0892 commit 4f153ed

File tree

5 files changed

+12
-17
lines changed

5 files changed

+12
-17
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- "2.7"
55
- "3.2"
66
- "3.3"
7+
- "3.4"
78
- "pypy"
89
install:
910
- "pip install ."

example.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1+
# -*- coding: utf-8 -*-
12
import os
23
import zipstream
34
import zipfile
45

56

6-
f = open('test.zip', 'wb')
7-
87
with zipstream.ZipFile(mode='w', compression=zipstream.ZIP_DEFLATED) as z:
98
z.write('LICENSE')
109
z.write('LICENSE', arcname='stuff/LICENSE')
@@ -18,8 +17,6 @@
1817
for chunk in z:
1918
f.write(chunk)
2019

21-
f.close()
22-
2320

2421
with zipfile.ZipFile('test.zip') as z:
2522
z.testzip()

setup.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
# -*- coding: utf-8 -*-
22
from setuptools import setup, find_packages
3-
import zipstream
43

54

65
setup(
76
name='zipstream',
8-
version=zipstream.__version__,
7+
version='1.1.0',
98
description='Zipfile generator',
109
author='Allan Lei',
1110
author_email='[email protected]',
1211
url='https://github.com/allanlei/python-zipstream',
1312
packages=find_packages(),
1413
keywords='zip streaming',
15-
1614
test_suite='nose.collector',
17-
tests_require = ['nose'],
15+
tests_require=['nose'],
1816
)

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py32, py33, pypy
2+
envlist = py26, py27, py32, py33, py34, pypy
33

44
[testenv]
55
deps=nose

zipstream/__init__.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"""
77
from __future__ import unicode_literals, print_function, with_statement
88

9-
__version__ = '1.0.4'
9+
__version__ = '1.1.0'
1010

1111
import os
1212
import sys
@@ -18,24 +18,23 @@
1818
from .compat import (
1919
str, bytes,
2020
ZIP64_VERSION,
21-
ZIP_BZIP2, BZIP2_VERSION,
21+
ZIP_BZIP2, BZIP2_VERSION,
2222
ZIP_LZMA, LZMA_VERSION)
2323

2424
from zipfile import (
25-
ZIP_STORED, ZIP64_LIMIT, ZIP_FILECOUNT_LIMIT, ZIP_MAX_COMMENT,
26-
ZIP_DEFLATED,
25+
ZIP_STORED, ZIP64_LIMIT, ZIP_FILECOUNT_LIMIT, ZIP_MAX_COMMENT,
26+
ZIP_DEFLATED,
2727
structCentralDir, structEndArchive64, structEndArchive, structEndArchive64Locator,
2828
stringCentralDir, stringEndArchive64, stringEndArchive, stringEndArchive64Locator,
2929
structFileHeader, stringFileHeader,
3030
zlib, crc32)
3131

32-
stringDataDescriptor = b'PK\x07\x08' # magic number for data descriptor
32+
stringDataDescriptor = b'PK\x07\x08' # magic number for data descriptor
3333

3434

3535
def _get_compressor(compress_type):
3636
if compress_type == ZIP_DEFLATED:
37-
return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION,
38-
zlib.DEFLATED, -15)
37+
return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -15)
3938
elif compress_type == ZIP_BZIP2:
4039
from zipfile import bz2
4140
return bz2.BZ2Compressor()
@@ -328,7 +327,7 @@ def __close(self):
328327
return
329328

330329
try:
331-
if self.mode in ('w', 'a') and self._didModify: # write ending records
330+
if self.mode in ('w', 'a') and self._didModify: # write ending records
332331
count = 0
333332
pos1 = self.fp.tell()
334333
for zinfo in self.filelist: # write central directory

0 commit comments

Comments
 (0)