-
Notifications
You must be signed in to change notification settings - Fork 25
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
Improve get() method shadowing #182
base: master
Are you sure you want to change the base?
Conversation
ndortega
commented
Apr 4, 2024
- Added a default get() function to pass through other calls to the Base.get function
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #182 +/- ##
=======================================
Coverage 99.36% 99.36%
=======================================
Files 24 24
Lines 1266 1267 +1
=======================================
+ Hits 1258 1259 +1
Misses 8 8 ☔ View full report in Codecov by Sentry. |
@JanisErdmanis Here's the changes you brought up |
The test set looks good. Perhaps it could be improved with a case when package which depends on Oxygen is loaded as a module to check if there are any precompilation errors. I think that can be automated by creating a dummy package which can be put within a test directory and added to a LOAD_PATH which would then be treated as ordinary package with precompilation. |
@ndortega can we also add a method:
Since users or package developers may want to overload
|
We need to comment out in
Because otherwise we have
and thus if method is not found it would form a recursion. The removal of An alternative is putting the redirection |