We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d93daa commit b5d26f8Copy full SHA for b5d26f8
mesonpy/_editable.py
@@ -265,7 +265,7 @@ def find_spec(
265
if self._build_path in os.environ.get(MARKER, '').split(os.pathsep):
266
return None
267
namespace = False
268
- tree = self.rebuild()
+ tree = self._rebuild()
269
parts = fullname.split('.')
270
271
# look for a package
@@ -293,7 +293,7 @@ def find_spec(
293
294
295
@functools.lru_cache(maxsize=1)
296
- def rebuild(self) -> Node:
+ def _rebuild(self) -> Node:
297
# skip editable wheel lookup during rebuild: during the build
298
# the module we are rebuilding might be imported causing a
299
# rebuild loop.
0 commit comments