-
Notifications
You must be signed in to change notification settings - Fork 90
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
Handle non-internal, non-product modules better #113
Comments
Thank you for your report. This code is trying to report (another) internal error and runs into issues when attempting to collect loaded module information to write in the error report. Apparently you've installed I can probably fix this by ignoring all modules that have |
Handle non-internal, non-product modules better: |
Properly implement |
Thanks
842294334
***@***.***
…------------------ 原始邮件 ------------------
发件人: ***@***.***>;
发送时间: 2022年12月12日(星期一) 下午5:46
收件人: ***@***.***>;
抄送: ***@***.***>; ***@***.***>;
主题: Re: [SkyLined/BugId] AssertionErro (Issue #113)
Thank you for your report.
This code is trying to report (another) internal error and runs into issues when attempting to collect loaded module information to write in the error report.
Apparently you've installed mpl_toolkits, which gets loaded when BugId runs (Y THO?). My code recognizes that mpl_toolkits is not a built-in Python module and assumes it is part of BugId. When it tries to collect information about the module, it fails because the module has its __file__ attribute set to None (Y THO?).
I can probably fix this by ignoring all modules that have __file__ set to None but having random Python modules loaded into BugId may break many assumptions is they behave weirdly like this, so after this fix you may still see more exceptions - please report those too and I will try to fix them as well.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
The text was updated successfully, but these errors were encountered: