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

[4.0.x] Make manager required in AstroidBuilder/InspectBuilder #2313

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

jacobtylerwalls
Copy link
Member

Type of Changes

Type
βœ“ πŸ”¨ Refactoring

Description

Closes #251

Remove delayed imports in AstroidManager by requiring AstroidManager to be provided to AstroidBuilder/InspectBuilder.

A couple new delayed imports became necessary, but they're in helpers like parse() and _astroid_bootstrapping(). We could address those by:

  • Requiring AstroidManager for parse() calls also.
  • Moving _astroid_bootstrapping() to manager.py.

@jacobtylerwalls jacobtylerwalls added this to the 4.0.0 milestone Sep 30, 2023
@codecov
Copy link

codecov bot commented Sep 30, 2023

Codecov Report

All modified and coverable lines are covered by tests βœ…

Project coverage is 92.84%. Comparing base (0883b04) to head (c9399bb).
Report is 89 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #2313      +/-   ##
==========================================
- Coverage   92.85%   92.84%   -0.01%     
==========================================
  Files          94       94              
  Lines       11056    11043      -13     
==========================================
- Hits        10266    10253      -13     
  Misses        790      790              
Flag Coverage Ξ”
linux 92.65% <100.00%> (-0.01%) ⬇️
pypy 90.99% <100.00%> (-0.01%) ⬇️
windows 92.43% <100.00%> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files Coverage Ξ”
astroid/brain/brain_nose.py 95.12% <100.00%> (ΓΈ)
astroid/builder.py 94.14% <100.00%> (+0.02%) ⬆️
astroid/interpreter/_import/spec.py 97.40% <100.00%> (ΓΈ)
astroid/manager.py 88.79% <100.00%> (-0.24%) ⬇️
astroid/raw_building.py 94.93% <100.00%> (-0.02%) ⬇️
astroid/rebuilder.py 98.43% <100.00%> (-0.03%) ⬇️

Copy link
Member

@Pierre-Sassoulas Pierre-Sassoulas left a comment

Choose a reason for hiding this comment

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

This one bring a lot of joy. Were you able to use nodes.X instead of X thanks to the fixed circular imports ?

@jacobtylerwalls
Copy link
Member Author

I didn't have a choice, because the second import statement [from nodes import ...] was failing because nodes was now partially installed at that point. I think before, it was an accident that nodes was fully initialized already.

Copy link
Collaborator

@DanielNoord DanielNoord left a comment

Choose a reason for hiding this comment

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

Although really in favour, this do introduce more global state for AstroidManager(), see also #2048.

As long as AstroidManager is a singleton we'll keep accessing shared memory in multiprocessing scenarios. Ideally, to me, we would change it in 4.x so that the manager needs to be instantiated.

@Pierre-Sassoulas Pierre-Sassoulas added the Enhancement ✨ Improvement to a component label May 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement ✨ Improvement to a component
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Refactor circular dependency in builder, manager, and raw_building
3 participants