mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
bpo-33908: Remove two superfluous assignments (GH-7116)
Signed-off-by: Srinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com>
This commit is contained in:
parent
06e2029dfa
commit
acdc660efc
2 changed files with 0 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue