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
Optimize implementation of TypedDict types for **kwds (#14316)
The implementation copied lots of callable types even when not using
the new feature, which was expensive. Now we only generate a copy if a
callable actually uses TypedDict types for **kwds.
This made self check 7-8% faster (when compiled with -O0).
The original implementation was in
#13471.
0 commit comments