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.
1 parent 21af312 commit 6e12aeaCopy full SHA for 6e12aea
network.py
@@ -3,7 +3,7 @@
3
#
4
# Copyright (c) 2012-2019 Snowflake Computing Inc. All right reserved.
5
6
-import collections
+import collections.abc
7
import contextlib
8
import gzip
9
import itertools
@@ -184,7 +184,7 @@ def __call__(self, r):
184
return r
185
186
187
-class ResultIterWithTimings(collections.Iterator):
+class ResultIterWithTimings(collections.abc.Iterator):
188
DOWNLOAD = u"download"
189
PARSE = u"parse"
190
ssl_wrap_util.py
@@ -21,7 +21,8 @@
21
import socket
22
import sys
23
import time
24
-from collections import namedtuple, Mapping
+from collections import namedtuple
25
+from collections.abc import Mapping
26
27
try:
28
monotonic = time.monotonic
0 commit comments