summary refs log tree commit diff
path: root/dot_ipython/profile_default/startup/40_json_literals.py
diff options
context:
space:
mode:
Diffstat (limited to 'dot_ipython/profile_default/startup/40_json_literals.py')
-rw-r--r--dot_ipython/profile_default/startup/40_json_literals.py7
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()