Jack Kamm <jackk...@gmail.com> writes: > Starting with dicts: these are no longer mangled. The current behavior > (before patch) is like so: > > #+begin_src python > return {"a": 1, "b": 2} > #+end_src > > #+RESULTS: > | a | : | 1 | b | : | 2 | > > But after the patch they appear like so: > > #+begin_src python > return {"a": 1, "b": 2} > #+end_src > > #+RESULTS: > : {'a': 1, 'b': 2}
What about #+begin_src python :results table return {"a": 1, "b": 2} #+end_src #+RESULTS: | a | 1 | | b | 2 | or #+begin_src python :results list return {"a": 1, "b": 2} #+end_src #+RESULTS: - a :: 1 - b :: 2 -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at <https://orgmode.org/>. Support Org development at <https://liberapay.com/org-mode>, or support my work at <https://liberapay.com/yantar92>