mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +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])
|
words = string.split(line[:i])
|
||||||
if not words: continue
|
if not words: continue
|
||||||
if len(words) == 3 and words[0] == 'struct':
|
if len(words) == 3 and words[0] == 'struct':
|
||||||
words[:2] == [words[0] + ' ' + words[1]]
|
words[:2] = [words[0] + ' ' + words[1]]
|
||||||
elif len(words) <> 2:
|
elif len(words) <> 2:
|
||||||
err(substfile + ':' + `lineno` +
|
err(substfile + ':' + `lineno` +
|
||||||
': warning: bad line: ' + line)
|
': warning: bad line: ' + line)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue