We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28cb87c commit 1e95a5dCopy full SHA for 1e95a5d
1 file changed
pyfoxfile.py
@@ -27,7 +27,6 @@
27
import zlib
28
import base64
29
import shutil
30
-import struct
31
import socket
32
import struct
33
import hashlib
@@ -411,7 +410,6 @@ def decode_unicode_escape(value):
411
410
412
# Robust bitness detection
413
# Works on Py2 & Py3, all platforms
414
-import struct, sys
415
PyBitness = "64" if struct.calcsize("P") * 8 == 64 else ("64" if sys.maxsize > 2**32 else "32")
416
417
geturls_ua_pyfile_python = "Mozilla/5.0 (compatible; {proname}/{prover}; +{prourl})".format(
0 commit comments