fix(ifex_ast_introspect): replace undefined TypeException with TypeError - #162
fix(ifex_ast_introspect): replace undefined TypeException with TypeError#162SoundMatt wants to merge 1 commit into
Conversation
`TypeException` is not defined anywhere; the correct built-in is `TypeError`. Calling `get_variant_types()` on a misconfigured Typedef would raise a `NameError` instead of the intended exception. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Matt Jones <47545907+SoundMatt@users.noreply.github.com>
|
Hello @SoundMatt I only saw your many PRs now and will go through them when there is time. I feel that just because an AI model can suggest many small changes, doesn't mean it is worth taking all of it since it creates many modifications that both users/developers have to deal with. If there are many modifications, we may leave a current practical approach of working primarily on master, and prepare a new major-release separately, probably on a working branch first.
I agree this one is easy and has a good explanation, I am just speaking in general since there are so many to look at. Let's take some time to review. |
|
By the way, now that I know which Matt you are, great to see you here! 😊 |
|
Happy to support a major release working branch.
This is how we are working with vissr now. In that case we have a 3.2 beta
and a 4.0 alpha.
Kind Regards,
Matt Jones
…On Thu, Jun 25, 2026 at 04:14 Gunnar at MBition ***@***.***> wrote:
*gunnar-mb* left a comment (COVESA/ifex#162)
<#162 (comment)>
By the way, now that I know which Matt you are, great to see you here! 😊
—
Reply to this email directly, view it on GitHub
<#162?email_source=notifications&email_token=ALKX4M7Y2FRWVPSFECCET2D5BUCP5A5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTINZZHA3DCNRZHA42M4TFMFZW63VHNVSW45DJN5XKKZLWMVXHJLDGN5XXIZLSL5RWY2LDNM#issuecomment-4798616989>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ALKX4M3AO2Y4SEPSXH2DRVL5BUCP5AVCNFSNUABFKJSXA33TNF2G64TZHMZDOOJWGY3TOMJYHNEXG43VMU5TINJQGQ2DAMRZGQ42C5QC>
.
Triage notifications, keep track of coding agent tasks and review pull
requests on the go with GitHub Mobile for iOS
<https://github.com/notifications/mobile/ios/ALKX4M3ZHXN5JNTCSKS7X2L5BUCP5A5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTINZZHA3DCNRZHA42M4TFMFZW63VHNVSW45DJN5XKKZLWMVXHJKTGN5XXIZLSL5UW64Y>
and Android
<https://github.com/notifications/mobile/android/ALKX4M6FIVQDWFEEL7AUCRT5BUCP5A5CNFSNUABFM5UWIORPF5TWS5BNNB2WEL2JONZXKZKDN5WW2ZLOOQXTINZZHA3DCNRZHA42M4TFMFZW63VHNVSW45DJN5XKKZLWMVXHJLTGN5XXIZLSL5QW4ZDSN5UWI>.
Download it today!
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
|
TypeException appears in more places. Let's fix it everywhere. |
TypeExceptionis not a built-in or defined anywhere in the codebase.Calling
get_variant_types()on a misconfiguredTypedefwouldtherefore raise a
NameErrorinstead of the intended error.Replace with the standard
TypeError.Co-Authored-By: Claude Sonnet 4.6 noreply@anthropic.com