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
@disconnect3d was analyzing stdlib code and noted several places with an old code pattern of a dict's .update method being called with a single element dict literal d.update({key: value}) instead of just d[key] = value assignment. see PR which cleans these up. #136811
It avoids an unnecessary temporary dict and method call, less awkward code.