mirror of
https://github.com/python/cpython.git
synced 2025-07-09 20:35:26 +00:00
Fixed typo: == -> =.
This commit is contained in:
parent
4549b137e3
commit
edb21c4edc
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ def addsubst(substfile):
|
|||
words = string.split(line[:i])
|
||||
if not words: continue
|
||||
if len(words) == 3 and words[0] == 'struct':
|
||||
words[:2] == [words[0] + ' ' + words[1]]
|
||||
words[:2] = [words[0] + ' ' + words[1]]
|
||||
elif len(words) <> 2:
|
||||
err(substfile + ':' + `lineno` +
|
||||
': warning: bad line: ' + line)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue