@e2b/python-sdk@2.29.6
·
11 commits
to main
since this release
Patch Changes
- 2a98cce: Fix
CommandHandle(sync and async) recording the command result after yielding the flushed end-event chunks. The decoders are now flushed and theCommandResultis recorded before the trailing chunks are yielded, so a consumer that stops iterating on the first flushed chunk still observes the exit code. - 21af1f8: Avoid quadratic-time stdout/stderr accumulation in command handles by buffering decoded chunks in a list and joining on read instead of repeatedly concatenating onto an instance attribute.