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.
py/test/selenium/webdriver/common/network.py
1 parent e455840 commit d1836b2Copy full SHA for d1836b2
py/test/selenium/webdriver/common/network.py
@@ -25,10 +25,7 @@
25
26
def get_interface_ip(ifname):
27
def _bytes(value, encoding):
28
- try:
29
- return bytes(value, encoding) # Python 3
30
- except TypeError:
31
- return value # Python 2
+ return bytes(value, encoding)
32
33
sckt = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
34
return socket.inet_ntoa(
0 commit comments