We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3c398d commit a9af515Copy full SHA for a9af515
1 file changed
pycatfile.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
@@ -412,7 +411,6 @@ def decode_unicode_escape(value):
412
411
413
# Robust bitness detection
414
# Works on Py2 & Py3, all platforms
415
-import struct, sys
416
PyBitness = "64" if struct.calcsize("P") * 8 == 64 else ("64" if sys.maxsize > 2**32 else "32")
417
418
geturls_ua_pyfile_python = "Mozilla/5.0 (compatible; {proname}/{prover}; +{prourl})".format(
0 commit comments