-
Notifications
You must be signed in to change notification settings - Fork 0
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
Python projects #14
base: master
Are you sure you want to change the base?
Python projects #14
Conversation
|
||
from py_io_capture import decorate_module, dump_records, DUMP_FILE_NAME | ||
import atexit | ||
cffi = decorate_module(cffi) |
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.
if there is no import cffi
, this decoration will case error. We can either decorate recompiler
or add import cffi
to the top
|
||
from py_io_capture import decorate_module, dump_records, DUMP_FILE_NAME | ||
import atexit | ||
charset_normalizer = decorate_module(charset_normalizer) |
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.
same error here, in this case we should decorate from_bytes
.
I think I tried only decorating the above before instead of what's in this PR and it still didn't dump any data. |
After the changes, the fuzzers should be runningwithout dumping. This can be verified by running |
No description provided.