stm: Initialize sys.path with ["0:/", "0:/src", "0:/lib"].

This is compatible with what search path was before sys.path refactor,
with addition of module library path ("0:/lib").
diff --git a/py/makeqstrdata.py b/py/makeqstrdata.py
index f231a5d..6ae229c 100644
--- a/py/makeqstrdata.py
+++ b/py/makeqstrdata.py
@@ -10,6 +10,8 @@
 
 # add some custom names to map characters that aren't in HTML
 codepoint2name[ord('.')] = 'dot'
+codepoint2name[ord(':')] = 'colon'
+codepoint2name[ord('/')] = 'slash'
 
 # this must match the equivalent function in qstr.c
 def compute_hash(qstr):