summaryrefslogtreecommitdiffstats
path: root/Lib/plistlib.py
diff options
context:
space:
mode:
authorSrinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy@users.noreply.github.com>2018-06-20 05:07:31 (GMT)
committerXiang Zhang <angwerzx@126.com>2018-06-20 05:07:31 (GMT)
commitacdc660efc2056d8e28d99eaaf79ab60a263bd15 (patch)
treec1eec748df14e4103fe3b77b82117332ffe36e39 /Lib/plistlib.py
parent06e2029dfa500a42e3565ed7ba8573412f153d1c (diff)
downloadcpython-acdc660efc2056d8e28d99eaaf79ab60a263bd15.zip
cpython-acdc660efc2056d8e28d99eaaf79ab60a263bd15.tar.gz
cpython-acdc660efc2056d8e28d99eaaf79ab60a263bd15.tar.bz2
bpo-33908: Remove two superfluous assignments (GH-7116)
Signed-off-by: Srinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com>
Diffstat (limited to 'Lib/plistlib.py')
-rw-r--r--Lib/plistlib.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/plistlib.py b/Lib/plistlib.py
index 21ebec3..248f514 100644
--- a/Lib/plistlib.py
+++ b/Lib/plistlib.py
@@ -644,7 +644,6 @@ class _BinaryPlistParser:
elif tokenH == 0x50: # ascii string
s = self._get_size(tokenL)
result = self._fp.read(s).decode('ascii')
- result = result
elif tokenH == 0x60: # unicode string
s = self._get_size(tokenL)