Comment¶
- Pass
re.DOTALL
to the optionflags
to make a dot match newlines as well.
Hands on the re.match object in Python
Equality by Reference and Value in Python
Below is a summary of equality by reference and value in different programming languages.
Disable Jedi in IPython
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
In the meantime, looks like there is a way one can disable jedi in ipython with Completer.use_jedi: https://ipython.readthedocs.io/en/stable/config/options/terminal.html
Specifically you can …
Popen - Advanced Usage of subprocess
Popen - Advance Usage of subprocess¶
Capture and handle the output of a long running process.
Tips on Xonsh
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
https://github.com/xonsh/xonsh/wiki/Cheatsheet
Tricks and Traps
-
While
$()
in xonsh works similar to$()
in (all variants of) shell, it cannot be used in the middle of argument of …