> > Also having colors by default is nice, but I'm wondering if those can also > e aplied to the backtraces, like in ipython: >
# PYTHON (no colors but "descriptive") >>> "test" / 0 Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unsupported operand type(s) for /: 'str' and 'int' # IPYTHON (uses colors and is descriptive) In [1]: "test" / 0 --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-1-24bdacdad2fc> in <module>() ----> 1 "test" / 0 TypeError: unsupported operand type(s) for /: 'str' and 'int' # JULIA (uses only red, not descriptive) julia> "test" / 0 ERROR: no method /(ASCIIString, Int32)
