You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want to add a version number to code objects, so that all functions that are created from the same code object have the same version number (at least until they are mutated).
Code objects are immutable, so they do not need a version number themselves, it is just to help function objects.
By ensuring that all function objects created from the same code object have the same version number, we can effectively specialize comprehensions and inner functions.
We want to add a version number to code objects, so that all functions that are created from the same code object have the same version number (at least until they are mutated).
Code objects are immutable, so they do not need a version number themselves, it is just to help function objects.
By ensuring that all function objects created from the same code object have the same version number, we can effectively specialize comprehensions and inner functions.
See faster-cpython/ideas#446 for more details.
The text was updated successfully, but these errors were encountered: