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 d324704 commit 940c225Copy full SHA for 940c225
lib/core/option.py
@@ -778,7 +778,7 @@ def _getaddrinfo(*args, **kwargs):
778
kb.cache[args] = socket._getaddrinfo(*args, **kwargs)
779
return kb.cache[args]
780
781
- if socket.getaddrinfo != _getaddrinfo:
+ if not hasattr(socket, '_getaddrinfo'):
782
socket._getaddrinfo = socket.getaddrinfo
783
socket.getaddrinfo = _getaddrinfo
784
lib/core/testing.py
@@ -75,10 +75,6 @@ def smokeTest():
75
return retVal
76
77
def adjustValueType(tagName, value):
78
- # as it's not part of optDict
79
- if tagName == "technique":
80
- value = int(value)
81
-
82
for family in optDict.keys():
83
for name, type_ in optDict[family].items():
84
if type(type_) == tuple:
0 commit comments