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
Add a wrapper around itertools.tee to make it a thread-safe
When writing to multiple output formats, users ran into problems. A runtime exception was raised: `generator raised StopIteration`. This is caused by itertools.tee not being thread safe: https://docs.python.org/3/library/itertools.html#itertools.tee
PiperOrigin-RevId: 664708727
0 commit comments