site --- 站点专属的配置钩子
site
code --- 解释器基类
code
本章中描述的模块允许编写类似于 Python 的交互式解释器的接口。 如果你想要一个支持附加某些特殊功能到 Python 语言的 Python 解释器,你应当看一下 code 模块。 (codeop 模块是低层级的,用于支持编译可能不完整的 Python 代码块。
codeop
本章描述的完整模块列表如下:
InteractiveInterpreter
InteractiveConsole
interact()
compile_command()
runsource()
runcode()
showsyntaxerror()
showtraceback()
write()
push()
resetbuffer()
raw_input()
Compile
CommandCompiler