Skip to content
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

Add --class-name param to prepend class names to methods #654

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

karolinepauls
Copy link

@karolinepauls karolinepauls commented Feb 29, 2024

Regular methods and classmethods supported. No support for static methods. This is because the frame object doesn't refer to the function, only its code, which leaves no other option than to try to find self or cls in locals. The alternative of using the gc module is horrendously slow even in the same process and also impractical in a remote process.

I was experiencing unaligned memory reads in coredump::test::test_coredump locally, unrelated to my changes. I fixed it in a separate PR.

image

it works in the record mode:
image

Regular methods and classmethods supported. No support for static methods.
This is because the frame object doesn't refer to the function, only its
code, which leaves no other option than to try to find `self` or `cls`
in locals. The alternative of using the `gc` module is horrendously slow
even in the same process and also impractical in a remote process.
@karolinepauls karolinepauls marked this pull request as ready for review March 9, 2024 20:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant