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
Resolve a TypeError lurking in the read_text() functional API
`importlib_resources.read_text()` calls the `Traversable.read_text()`
concrete method with an `errors` argument that doesn't exist in the
method signature, resulting in an `TypeError`.
This is resolved by adding an `errors` parameter to
`Traversable.read_text()`.
Fixespython/cpython#127012
0 commit comments