summaryrefslogtreecommitdiff
path: root/SCons
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2023-05-02 11:28:46 -0600
committerMats Wichmann <mats@linux.com>2023-05-02 11:28:46 -0600
commit1ee43f4691dc7ab651fd22f07748c237f0301675 (patch)
treecc1d6333d90487617f14bd56d643e3e7b83d26ed /SCons
parent54e948dd71d85f1e228307af2e16162897e36401 (diff)
downloadscons-git-1ee43f4691dc7ab651fd22f07748c237f0301675.tar.gz
Change bas64 decodestring -> decodebytes
The former was an alias in Python 3, deprecated since 3.1. Use the replacement. Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'SCons')
-rw-r--r--SCons/Tool/msvs.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/SCons/Tool/msvs.py b/SCons/Tool/msvs.py
index 86df1ef66..d21803890 100644
--- a/SCons/Tool/msvs.py
+++ b/SCons/Tool/msvs.py
@@ -777,7 +777,7 @@ class _GenerateV6DSP(_DSPGenerator):
# OK, we've found our little pickled cache of data.
try:
- datas = base64.decodestring(datas)
+ datas = base64.decodebytes(datas)
data = pickle.loads(datas)
except KeyboardInterrupt:
raise
@@ -798,7 +798,7 @@ class _GenerateV6DSP(_DSPGenerator):
# OK, we've found our little pickled cache of data.
# it has a "# " in front of it, so we strip that.
try:
- datas = base64.decodestring(datas)
+ datas = base64.decodebytes(datas)
data = pickle.loads(datas)
except KeyboardInterrupt:
raise
@@ -1095,7 +1095,7 @@ class _GenerateV7DSP(_DSPGenerator, _GenerateV7User):
# OK, we've found our little pickled cache of data.
try:
- datas = base64.decodestring(datas)
+ datas = base64.decodebytes(datas)
data = pickle.loads(datas)
except KeyboardInterrupt:
raise
@@ -1115,7 +1115,7 @@ class _GenerateV7DSP(_DSPGenerator, _GenerateV7User):
# OK, we've found our little pickled cache of data.
try:
- datas = base64.decodestring(datas)
+ datas = base64.decodebytes(datas)
data = pickle.loads(datas)
except KeyboardInterrupt:
raise
@@ -1592,7 +1592,7 @@ class _GenerateV7DSW(_DSWGenerator):
# OK, we've found our little pickled cache of data.
try:
- datas = base64.decodestring(datas)
+ datas = base64.decodebytes(datas)
data = pickle.loads(datas)
except KeyboardInterrupt:
raise