We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
None
__init__
python/cpython@main...faster-cpython:cpython:specialize-calls-to-python-classes
This is "easy" for normal def __init__ but harder for __init__ = x and ty.__init__ = x because you have to hook and re-instrument or something.
def __init__
__init__ = x
ty.__init__ = x
The text was updated successfully, but these errors were encountered:
Unless---oops---it actually puts that opcode after CALL_FUNCTION to type, instead of inside the method
CALL_FUNCTION
Sorry, something went wrong.
Oh it's a shim frame, neat
I wonder how we could push that frame very fast without doing the sort of static-alloc and pointer link thing they do in CPython
python/cpython@04492cb
No branches or pull requests
python/cpython@main...faster-cpython:cpython:specialize-calls-to-python-classes
This is "easy" for normal
def __init__
but harder for__init__ = x
andty.__init__ = x
because you have to hook and re-instrument or something.The text was updated successfully, but these errors were encountered: