mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +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,
|
def found(name, ispackage,
|
||||||
modpkgs=modpkgs, shadowed=shadowed, seen=seen):
|
modpkgs=modpkgs, shadowed=shadowed, seen=seen):
|
||||||
if not name in seen:
|
if name not in seen:
|
||||||
modpkgs.append((name, '', ispackage, name)) in shadowed
|
modpkgs.append((name, '', ispackage, name in shadowed))
|
||||||
seen[name] = 1
|
seen[name] = 1
|
||||||
shadowed[name] = 1
|
shadowed[name] = 1
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue