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
gh-145886: remove unused Event.raw field from _pyrepl
Event.raw was being accumulated in getpending() but never actually
read anywhere -- the callers only ever use Event.data. On top of that,
there was a copy-paste bug (e.raw += e.raw instead of e.raw += e2.raw)
which went unnoticed precisely because nothing consumes the field.
Rather than just fixing the typo, remove the dead field entirely.
0 commit comments