[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread Antoine Pitrou
Change by Antoine Pitrou : -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread miss-islington
miss-islington added the comment: New changeset 107cf078910db7c1cafdd486270ba8083d72aed7 by Antoine Pitrou in branch '3.9': [3.9] bpo-43517 (followup): Install additional test directory (GH-24950) (GH-24951) https://github.com/python/cpython/commit/107cf078910db7c1cafdd486270ba8083d72aed7

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread Gregory P. Smith
Gregory P. Smith added the comment: Thanks Antoine! -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread Antoine Pitrou
Change by Antoine Pitrou : -- pull_requests: +23709 pull_request: https://github.com/python/cpython/pull/24951 ___ Python tracker ___

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread miss-islington
miss-islington added the comment: New changeset 66c8adfa27aeea004657ef29b6db4e4c360ad611 by Antoine Pitrou in branch 'master': bpo-43517 (followup): Install additional test directory (GH-24950) https://github.com/python/cpython/commit/66c8adfa27aeea004657ef29b6db4e4c360ad611 --

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread Antoine Pitrou
Change by Antoine Pitrou : -- pull_requests: +23708 pull_request: https://github.com/python/cpython/pull/24950 ___ Python tracker ___

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread miss-islington
miss-islington added the comment: New changeset ac17ed60f2033253248be494a8e1980fe7e3531d by Antoine Pitrou in branch '3.9': [3.9] bpo-43517: Fix false positive in detection of circular imports (GH-24895) (GH-24948)

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread Antoine Pitrou
Change by Antoine Pitrou : -- pull_requests: +23706 pull_request: https://github.com/python/cpython/pull/24948 ___ Python tracker ___

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: New changeset 2fd16ef406bba239b1334057fb499496a84b3aa2 by Antoine Pitrou in branch 'master': bpo-43517: Fix false positive in detection of circular imports (#24895) https://github.com/python/cpython/commit/2fd16ef406bba239b1334057fb499496a84b3aa2

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-16 Thread Cebtenzzre
Change by Cebtenzzre : -- nosy: +cebtenzzre ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-16 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +brett.cannon, eric.snow, nanjekyejoannah, ncoghlan, serhiy.storchaka ___ Python tracker ___

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-16 Thread Antoine Pitrou
Change by Antoine Pitrou : -- keywords: +patch pull_requests: +23660 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/24895 ___ Python tracker

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-16 Thread Antoine Pitrou
New submission from Antoine Pitrou : This seems to be caused by a logic error in the patch for issue35943. It has been causing multiple issues for multi-threaded and multi-process systems written in Python: * issue41567 * issue43515 * https://github.com/dask/distributed/issues/4168

[issue43517] Fix false positives in circular import detection with from-imports

2021-03-16 Thread Antoine Pitrou
Change by Antoine Pitrou : -- assignee: pitrou components: Library (Lib) nosy: pitrou priority: deferred blocker severity: normal stage: needs patch status: open title: Fix false positives in circular import detection with from-imports type: behavior versions: Python 3.10, Python 3.9