[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-20 Thread STINNER Victor
STINNER Victor added the comment: The issue is now fixed in 3.7, 3.8 and master branches. Thanks Chris Angelico for the bug report. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.6

[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-20 Thread miss-islington
miss-islington added the comment: New changeset 6056b7b84f2f77e2c3b49a18cfebe061fc23a08a by Miss Islington (bot) in branch '3.7': [3.8] bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060) (GH-19090)

[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +18453 pull_request: https://github.com/python/cpython/pull/19093 ___ Python tracker ___

[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-20 Thread STINNER Victor
STINNER Victor added the comment: New changeset ba26bf30940f4347fedcf8ebc374c6e2dc375afa by Victor Stinner in branch '3.8': [3.8] bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060) (GH-19090)

[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-20 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +18450 pull_request: https://github.com/python/cpython/pull/19090 ___ Python tracker ___

[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +18449 pull_request: https://github.com/python/cpython/pull/19089 ___ Python tracker

[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-18 Thread STINNER Victor
STINNER Victor added the comment: New changeset d18de46117d661a4acaf2380cc5ebb1cf6a000e9 by Victor Stinner in branch 'master': bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060) https://github.com/python/cpython/commit/d18de46117d661a4acaf2380cc5ebb1cf6a000e9

[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-18 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +18413 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19060 ___ Python tracker ___

[issue27807] Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure

2020-03-18 Thread STINNER Victor
Change by STINNER Victor : -- title: Prevent site-packages .pth files from causing test_site failure -> Prevent site-packages .pth files from causing test_site failure: test_site.test_startup_imports() failure ___ Python tracker

[issue27807] Prevent site-packages .pth files from causing test_site failure

2020-03-18 Thread STINNER Victor
STINNER Victor added the comment: I marked bpo-35691 as a duplicate of this issue. -- ___ Python tracker ___ ___ Python-bugs-list

[issue27807] Prevent site-packages .pth files from causing test_site failure

2020-03-18 Thread STINNER Victor
STINNER Victor added the comment: Fedora and RHEL downstream issue: https://bugzilla.redhat.com/show_bug.cgi?id=1814392 -- nosy: +vstinner ___ Python tracker ___

[issue27807] Prevent site-packages .pth files from causing test_site failure

2016-08-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I think hitting adventurous users like Chris who locally compile and test with this failure is wrong. There is no core dev 'site' expert, so I picked 'testing'. -- nosy: +ezio.melotti, michael.foord, terry.reedy

[issue27807] Prevent site-packages .pth files from causing test_site failure

2016-08-19 Thread Chris Angelico
New submission from Chris Angelico: Having matplotlib installed globally causes test_site to fail, due to the .pth file importing types. The point of the test is to monitor startup dependencies (and thus time) for the core interpreter and standard library, not third-party libraries, so having

[issue27807] Prevent site-packages .pth files from causing test_site failure

2016-08-19 Thread Chris Angelico
Changes by Chris Angelico : -- keywords: +patch Added file: http://bugs.python.org/file44158/no-site-packages-in-test.patch ___ Python tracker