summaryrefslogtreecommitdiff
path: root/lib/pythonrc
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2024-01-05 21:17:22 -0500
committerBen Sima <ben@bsima.me>2024-01-05 21:18:13 -0500
commit021c3f0c7e2428f8b34590e3c05307fd5694d7ba (patch)
tree9f602d64b35de19996eb815014105745e9bc430f /lib/pythonrc
parent7586a48f5df5ef6c8ddbc7c98a56e9af378841cf (diff)
updates
Diffstat (limited to 'lib/pythonrc')
-rw-r--r--lib/pythonrc7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/pythonrc b/lib/pythonrc
index ec59d2b..89408a7 100644
--- a/lib/pythonrc
+++ b/lib/pythonrc
@@ -1,8 +1,10 @@
import os
import pdb
import pprint
-import rlcompleter, readline
+import rlcompleter
+import readline
import sys
+import importlib
# enable tab completion
readline.parse_and_bind("tab: complete")
@@ -13,3 +15,6 @@ pdb.Pdb.complete = rlcompleter.Completer(locals()).complete
# prettyprint with p()
pp = pprint.PrettyPrinter(indent=4, width=80)
p = pp.pprint
+
+# reload a module with r(module)
+r = importlib.reload