We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__init__
1 parent 8d92aba commit 6735decCopy full SHA for 6735dec
gitdb/stream.py
@@ -10,6 +10,11 @@
10
import sys
11
import zlib
12
13
+from gitdb.const import NULL_BYTE, BYTE_SPACE
14
+from gitdb.utils.encoding import force_bytes
15
+from mmap import mmap
16
+from zlib import decompressobj
17
+
18
from gitdb.fun import (
19
msb_size,
20
stream_copy,
@@ -26,9 +31,6 @@
26
31
close,
27
32
)
28
33
29
-from gitdb.const import NULL_BYTE, BYTE_SPACE
30
-from gitdb.utils.encoding import force_bytes
-
34
has_perf_mod = False
35
try:
36
from gitdb_speedups._perf import apply_delta as c_apply_delta
requirements.txt
@@ -1 +1 @@
1
-smmap>=3.0.1,<6
+smmap>=5.0.0,<6
0 commit comments