Closed WangGithubUser closed 1 year ago
CodeType in Python has a default __str__ and __repr__, but it is such unreadable, it only show the co_filename and co_firstlineno. In this PR, I add a special judge to filter out the CodeType object.
CodeType
__str__
__repr__
co_filename
co_firstlineno
Issue resolved: #94
The feature is not planned.Detail at comment in #94
Summary
CodeType
in Python has a default__str__
and__repr__
, but it is such unreadable, it only show theco_filename
andco_firstlineno
. In this PR, I add a special judge to filter out theCodeType
object.Before this PR:
After this PR:
Issue resolved: #94