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
⚡️ Speed up function process_result by 12% in PR #3819 (feature/defer)
Here is an optimized version. Improvements.
- Removed the unnecessary intermediate variables (`errors`, `extensions`) that are only used once.
- Avoided repeated dictionary unpacking by building the dictionary with direct assignments and only adding keys if necessary.
- Used `if-else` statements for error and extensions blocks for slight speed-ups over dictionary unpacking on small dicts.
Rewritten code.
This version allocates less intermediate data and does not do work unless necessary.
0 commit comments