diff options
author | Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy@users.noreply.github.com> | 2018-06-20 05:07:31 (GMT) |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2018-06-20 05:07:31 (GMT) |
commit | acdc660efc2056d8e28d99eaaf79ab60a263bd15 (patch) | |
tree | c1eec748df14e4103fe3b77b82117332ffe36e39 /Lib/plistlib.py | |
parent | 06e2029dfa500a42e3565ed7ba8573412f153d1c (diff) | |
download | cpython-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.py | 1 |
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) |