mirror of
https://github.com/python/cpython.git
synced 2025-07-13 14:25:18 +00:00
Correct erroneous parenthesis placement in the delta from 1.63 to 1.64.
This commit is contained in:
parent
9482d2591a
commit
4f759d8504
1 changed files with 2 additions and 2 deletions
|
@ -823,8 +823,8 @@ TT { font-family: lucidatypewriter, lucida console, courier }
|
|||
|
||||
def found(name, ispackage,
|
||||
modpkgs=modpkgs, shadowed=shadowed, seen=seen):
|
||||
if not name in seen:
|
||||
modpkgs.append((name, '', ispackage, name)) in shadowed
|
||||
if name not in seen:
|
||||
modpkgs.append((name, '', ispackage, name in shadowed))
|
||||
seen[name] = 1
|
||||
shadowed[name] = 1
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue