-
Notifications
You must be signed in to change notification settings - Fork 37
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
Refactored internal use of get_statepoints #282
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have only superficially looked over the code for now, but before we move forward, I would like to point out that the Project.get_statepoint()
function has side-effects, specifically it ensures that the retrieved state point is cached:
signac/signac/contrib/project.py
Line 857 in c9810b9
self._sp_cache[jobid] = sp |
For the sake of this refactorization, it might be better to simply alias the Project.get_statepoint
with Project._get_statepoint
as a first step and then see what further optimization we can do from there.
@vishav1771 I like what @csadorf suggested. Replacing internal uses of Here are the steps to address this:
|
Codecov Report
@@ Coverage Diff @@
## master #282 +/- ##
==========================================
+ Coverage 64.93% 64.94% +0.01%
==========================================
Files 40 40
Lines 5635 5637 +2
==========================================
+ Hits 3659 3661 +2
Misses 1976 1976
Continue to review full report at Codecov.
|
@bdice I have done the changes you asked. Kindly check if something needs to be changed? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vishav1771 Yes, that's right! Can you review the checklist for this PR again and check the boxes? (Agree to the contributor agreement, etc.)
Also please add a changelog line, under "Changed": "Refactored internal use of deprecated get_statepoint
function (#227, #282)." (Note that the code font in rST requires two backticks, just follow the examples.)
@csadorf You can merge this after you review. Thanks again, @vishav1771! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect! I think that is all what was needed for the scope of this issue. Thank you very much.
Description
Refactored the internal use of a deprecated method
get_statepoints
fromproject.py
Motivation and Context
Fixes #227
Types of Changes
1The change breaks (or has the potential to break) existing functionality.
Checklist:
If necessary:
Example for a changelog entry:
Fix issue with launching rockets to the moon (#101, #212).