-
Notifications
You must be signed in to change notification settings - Fork 294
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
#1680 fix segmentation fault when appending None #1778
#1680 fix segmentation fault when appending None #1778
Conversation
…None Signed-off-by: Spencer Magnusson <[email protected]>
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1778 +/- ##
==========================================
- Coverage 84.11% 81.70% -2.41%
==========================================
Files 198 176 -22
Lines 22241 12318 -9923
Branches 4687 3028 -1659
==========================================
- Hits 18709 10065 -8644
+ Misses 2610 1717 -893
+ Partials 922 536 -386
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 65 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
Just to make sure I understand- because it was pointer before, you could pass the python |
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.
LGTM, good catch
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.
good solution, thanks
Fixes #1680
Summary
Changes to reference parameter to raise
TypeError
instead of crashing with a segmentation fault. Createdtest_append_none
to prevent regression.