-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
feat: add cython extension for signature #72
Conversation
Codecov ReportBase: 81.21% // Head: 81.49% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #72 +/- ##
==========================================
+ Coverage 81.21% 81.49% +0.27%
==========================================
Files 25 25
Lines 2928 2923 -5
Branches 569 567 -2
==========================================
+ Hits 2378 2382 +4
+ Misses 339 332 -7
+ Partials 211 209 -2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
Additional significant improvements would require getting rid of the dict dispatch so we can make the read functions cdef instead of cpdef. That trade off may not be worth it though since it would make the pure python code paths slower. |
@@ -255,13 +255,6 @@ def new_signal( | |||
unix_fds=unix_fds, | |||
) | |||
|
|||
def _matches(self, **kwargs): | |||
for attr, val in kwargs.items(): |
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.
This is dead code
This is roughly at 10% improvement to the unmarshall path