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
Before we freeze the public API, ensure there are no unnecessary performance bottlenecks, such as having to scan through the entire file an extra time, or having to decode/encode the whole file without a good reason. Some of these might impact the public API.
Here are some things that come to mind:
Do we read the file in both Python and Rust? Can we only do it in Rust? It would be great to only have to read the file once.
Do we need to scan the whole file an extra time to find # mypy: comments (for flags)? Can we integrate this into the type comment parsing pass?
Before we freeze the public API, ensure there are no unnecessary performance bottlenecks, such as having to scan through the entire file an extra time, or having to decode/encode the whole file without a good reason. Some of these might impact the public API.
Here are some things that come to mind:
# mypy:comments (for flags)? Can we integrate this into the type comment parsing pass?