Python 运行时服务
本章描述的模块广泛服务于 Python 解释器及其与其环境的交互:
- sys —- 系统相关的形参和函数
- sys.monitoring —- 执行事件监测
- sysconfig —- 提供对 Python 配置信息的访问
- builtins —- 内置对象
- __main__ —- 最高层级代码环境
- warnings —- 警告信息控制
- dataclasses —- 数据类
- contextlib —- 为 with语句上下文提供的工具
- abc —- 抽象基类
- atexit —- 退出处理器
- traceback —- 打印或读取栈回溯信息
- __future__ —- Future 语句定义
- gc —- 垃圾回收器接口
- inspect —- 检查当前对象
- site —- 站点专属的配置钩子