From 2e2f7ede17f4aacee6099c23d7eb6cb6bae12b83 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Mon, 15 Aug 2022 15:05:51 -0400 Subject: [PATCH] add anlaysis --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8b7b480..c92b0cf 100644 --- a/README.md +++ b/README.md @@ -59,3 +59,5 @@ The module and variable will import fine with Python, but will fail the import f - `setuptools>=64.0.0` changed from using `.egg-link` to `.pth` + editable loader - The module loaded by Cython has the name `shadow_import_issue.c_exts.shadow_import_issue.shadow` and is loaded from `shadow_import_issue/c_exts/shadow.py` - The issue does not happen with `Cython==3.0.0a11` +- Changing to a relative import resolves the issue + - `from .. import shadow` will load the correct module