Skip to content

Commit a1fc4da

Browse files
committed
Update of six third-party library
1 parent c0ad109 commit a1fc4da

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

data/txt/sha256sums.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ c6a182f6b7d3b0ad6f0888ea2a4de4148f0770549038d7de8bc3267b4c6635f7 lib/core/readl
188188
63ae69713c6ea9abfa10e71dfab8f2dcf42432177a38d2c1e98785bf1468674c lib/core/replication.py
189189
5bad5bc7115051cef7b84efa73fbafbf5e1db46eef32a445056b56cda750b66f lib/core/revision.py
190190
0dcb52c9c76a4b0acf2e9038f7d8f08c14543cef3cf7032831c6c0a99376ad24 lib/core/session.py
191-
62bc4931b48279f8965809bbde1139d9294d86bb3b4b4ded50fab600130bc72c lib/core/settings.py
191+
1266dca805f171c1f364e43abc30b849842c23504be7f7581a3a4028e3b1e16d lib/core/settings.py
192192
a1e4f2860bffc73bbf2e5db293fa49dcb600ea35f950cda43dc953b3160ab3db lib/core/shell.py
193193
841716e87b90a3b598515910841f7cf8d33bb87c24a27fba1a80e36a831cbcd7 lib/core/subprocessng.py
194194
9731092f195e346716929323ea3c93247b23b9b92b0f32d3fd0acc3adf9876cc lib/core/target.py
@@ -620,7 +620,7 @@ ef70b88cc969a3e259868f163ad822832f846196e3f7d7eccb84958c80b7f696 thirdparty/odi
620620
8df6e8c60eac4c83b1bf8c4e0e0276a4caa3c5f0ca57bc6a2116f31f19d3c33f thirdparty/prettyprint/prettyprint.py
621621
3739db672154ad4dfa05c9ac298b0440f3f1500c6a3697c2b8ac759479426b84 thirdparty/pydes/__init__.py
622622
d1d54fc08f80148a4e2ac5eee84c8475617e8c18bfbde0dfe6894c0f868e4659 thirdparty/pydes/pyDes.py
623-
1c61d71502a80f642ff34726aa287ac40c1edd8f9239ce2e094f6fded00d00d4 thirdparty/six/__init__.py
623+
c51c91f703d3d4b3696c923cb5fec213e05e75d9215393befac7f2fa6a3904df thirdparty/six/__init__.py
624624
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 thirdparty/socks/__init__.py
625625
7027e214e014eb78b7adcc1ceda5aca713a79fc4f6a0c52c9da5b3e707e6ffe9 thirdparty/socks/LICENSE
626626
543217f63a4f0a7e7b4f9063058d2173099d54d010a6a4432e15a97f76456520 thirdparty/socks/socks.py

lib/core/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from thirdparty import six
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.9.2.13"
22+
VERSION = "1.9.2.14"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

thirdparty/six/__init__.py

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2010-2020 Benjamin Peterson
1+
# Copyright (c) 2010-2024 Benjamin Peterson
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to deal
@@ -29,7 +29,7 @@
2929
import types
3030

3131
__author__ = "Benjamin Peterson <[email protected]>"
32-
__version__ = "1.16.0"
32+
__version__ = "1.17.0"
3333

3434

3535
# Useful for very coarse version differentiation.
@@ -435,12 +435,17 @@ class Module_six_moves_urllib_request(_LazyModule):
435435
MovedAttribute("HTTPErrorProcessor", "urllib2", "urllib.request"),
436436
MovedAttribute("urlretrieve", "urllib", "urllib.request"),
437437
MovedAttribute("urlcleanup", "urllib", "urllib.request"),
438-
MovedAttribute("URLopener", "urllib", "urllib.request"),
439-
MovedAttribute("FancyURLopener", "urllib", "urllib.request"),
440438
MovedAttribute("proxy_bypass", "urllib", "urllib.request"),
441439
MovedAttribute("parse_http_list", "urllib2", "urllib.request"),
442440
MovedAttribute("parse_keqv_list", "urllib2", "urllib.request"),
443441
]
442+
if sys.version_info[:2] < (3, 14):
443+
_urllib_request_moved_attributes.extend(
444+
[
445+
MovedAttribute("URLopener", "urllib", "urllib.request"),
446+
MovedAttribute("FancyURLopener", "urllib", "urllib.request"),
447+
]
448+
)
444449
for attr in _urllib_request_moved_attributes:
445450
setattr(Module_six_moves_urllib_request, attr.name, attr)
446451
del attr

0 commit comments

Comments
 (0)