We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2806630 commit 321760cCopy full SHA for 321760c
1 file changed
wolframclient/utils/six.py
@@ -34,7 +34,6 @@
34
StringIO = io.StringIO
35
BytesIO = io.BytesIO
36
37
- memoryview = memoryview
38
buffer_types = (bytes, bytearray, memoryview)
39
40
else:
@@ -49,13 +48,6 @@
49
48
50
StringIO = BytesIO = StringIO.StringIO
51
52
- # memoryview and buffer are not strictly equivalent, but should be fine for
53
- # django core usage (mainly BinaryField). However, Jython doesn't support
54
- # buffer (see http://bugs.jython.org/issue1521), so we have to be careful.
55
- if JYTHON:
56
57
- else:
58
- memoryview = buffer
59
buffer_types = (bytearray, memoryview, buffer)
60
61
iterable_types = [
0 commit comments