Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify an interestingly written conditional #7161

Merged
merged 5 commits into from
Oct 8, 2019
Merged

Conversation

kmoza
Copy link
Contributor

@kmoza kmoza commented Oct 7, 2019

No description provided.

@@ -569,8 +569,6 @@ def egg_link_path(dist):
if running_under_virtualenv():
if virtualenv_no_global():
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if virtualenv_no_global():
if not virtualenv_no_global():

@deppiedave64
Copy link

Both ways do not pass the tests, since either in a yes-global venv or in a no-global venv, nothing is actually appended.
I think it should rather be:

if running_under_virtualenv():
    sites.append(site_packages)
    if not virtualenv_no_global() and user_site:
        sites.append(user_site)

That way the logic actually matches the description in the docstring and tests pass.

@pradyunsg
Copy link
Member

Sounds like a plan!

@pradyunsg pradyunsg added the skip news Does not need a NEWS file entry (eg: trivial changes) label Oct 8, 2019
@pradyunsg pradyunsg changed the title fix for issue #7152 Simplify an interestingly written conditional Oct 8, 2019
@pradyunsg pradyunsg merged commit 7497203 into pypa:master Oct 8, 2019
@pradyunsg
Copy link
Member

Thanks @kmoza and @deppiedave64! ^>^

@lock lock bot added the auto-locked Outdated issues that have been locked by automation label Nov 7, 2019
@lock lock bot locked as resolved and limited conversation to collaborators Nov 7, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
auto-locked Outdated issues that have been locked by automation skip news Does not need a NEWS file entry (eg: trivial changes)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants