I would like to capture both stdout and stderr from org-mode code block to output.
#+begin_src python :results output
import sys
print("hello stdout", file=sys.stdout)
print("hello stderr", file=sys.stderr)
#+end_src
#+RESULTS:
: hello stdout
Current sample only captured stdout text, how can I capture both?