diff options
author | Alen <alen@dotfiles.xyz> | 2023-09-25 21:32:05 +0400 |
---|---|---|
committer | Alen <alen@dotfiles.xyz> | 2023-09-25 21:32:05 +0400 |
commit | 4b8ed94012af1fb4f4752b5d199f79c6bcfd4c59 (patch) | |
tree | ad54d702d385e973f367cc02c9115b1948510caa /dot_ipython/profile_default/startup/40_json_literals.py | |
parent | 33df3ffbe31ea3b722bfeec21e6a4ebfd038aa00 (diff) |
Add basic IPython config and startup scripts
Diffstat (limited to 'dot_ipython/profile_default/startup/40_json_literals.py')
-rw-r--r-- | dot_ipython/profile_default/startup/40_json_literals.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dot_ipython/profile_default/startup/40_json_literals.py b/dot_ipython/profile_default/startup/40_json_literals.py new file mode 100644 index 0000000..f85d3d5 --- /dev/null +++ b/dot_ipython/profile_default/startup/40_json_literals.py @@ -0,0 +1,7 @@ +"""Make pasting JSON easier by providing convenient literals.""" + +true = True +false = False +null = None + +_summarise_startup() |