Skip to content

Commit 8f307f8

Browse files
committed
Merge pull request #10 from allanlei/release-1.1.2
Release 1.1.2
2 parents e9dc2f1 + 4bfb670 commit 8f307f8

File tree

5 files changed

+25
-9
lines changed

5 files changed

+25
-9
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ python:
55
- "3.2"
66
- "3.3"
77
- "3.4"
8+
- "3.5"
89
- "pypy"
910
install:
1011
- "pip install ."
11-
script: nosetests
12+
script: nosetests

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='zipstream',
7-
version='1.1.1',
7+
version='1.1.2',
88
description='Zipfile generator',
99
author='Allan Lei',
1010
author_email='[email protected]',

tox.ini

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

44
[testenv]
55
deps=nose
6-
commands = nosetests {posargs}
6+
commands = nosetests {posargs}

zipstream/__init__.py

+13-4
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.1.1'
9+
__version__ = '1.1.2'
1010

1111
import os
1212
import sys
@@ -19,7 +19,8 @@
1919
str, bytes,
2020
ZIP64_VERSION,
2121
ZIP_BZIP2, BZIP2_VERSION,
22-
ZIP_LZMA, LZMA_VERSION)
22+
ZIP_LZMA, LZMA_VERSION,
23+
SEEK_SET, SEEK_CUR, SEEK_END)
2324

2425
from zipfile import (
2526
ZIP_STORED, ZIP64_LIMIT, ZIP_FILECOUNT_LIMIT, ZIP_MAX_COMMENT,
@@ -70,8 +71,16 @@ def flush(self):
7071
def next(self):
7172
raise NotImplementedError()
7273

73-
def seek(self, offset, whence):
74-
raise NotImplementedError()
74+
# def seek(self, offset, whence=None):
75+
# if whence == SEEK_SET:
76+
# if offset < 0:
77+
# raise ValueError('negative seek value -1')
78+
# self.data_pointer = offset
79+
# elif whence == SEEK_CUR:
80+
# self.data_pointer = max(0, self.data_pointer + offset)
81+
# elif whence == SEEK_END:
82+
# self.data_pointer = max(0, offset)
83+
# return self.data_pointer
7584

7685
def tell(self):
7786
return self.data_pointer

zipstream/compat.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,10 @@
6565
try:
6666
from zipfile import ZIP_MAX_COMMENT
6767
except ImportError:
68-
ZIP_MAX_COMMENT = (1 << 16) - 1
68+
ZIP_MAX_COMMENT = (1 << 16) - 1
69+
70+
71+
# Copy from io
72+
SEEK_SET = 0 # start of the stream (the default); offset should be zero or positive
73+
SEEK_CUR = 1 # current stream position; offset may be negative
74+
SEEK_END = 2 # end of the stream; offset is usually negative

0 commit comments

Comments
 (0)