파이썬 실행시간 서비스
**********************

이 장에서 설명하는 모듈들은 파이썬 인터프리터와 그 환경과의 상호 작용
과 관련된 다양한 서비스를 제공합니다. 다음은 개요입니다:

* "sys" --- System-specific parameters and functions

* "sysconfig" --- 파이썬의 구성 정보에 접근하기

  * 구성 변수

  * 설치 경로

  * 기타 함수

  * "sysconfig" 를 스크립트로 사용하기

* "builtins" --- 내장 객체

* "__main__" --- 최상위 스크립트 환경

* "warnings" --- Warning control

  * Warning Categories

  * The Warnings Filter

    * Describing Warning Filters

    * Default Warning Filter

    * Overriding the default filter

  * Temporarily Suppressing Warnings

  * Testing Warnings

  * Updating Code For New Versions of Dependencies

  * Available Functions

  * Available Context Managers

* "dataclasses" --- 데이터 클래스

  * 모듈 수준의 데코레이터, 클래스 및 함수

  * 초기화 후처리

  * 클래스 변수

  * 초기화 전용 변수

  * 고정 인스턴스

  * 계승

  * 기본 팩토리 함수

  * 가변 기본값

  * 예외

* "contextlib" --- Utilities for "with"-statement contexts

  * Utilities

  * Examples and Recipes

    * Supporting a variable number of context managers

    * Catching exceptions from "__enter__" methods

    * Cleaning up in an "__enter__" implementation

    * Replacing any use of "try-finally" and flag variables

    * Using a context manager as a function decorator

  * Single use, reusable and reentrant context managers

    * Reentrant context managers

    * Reusable context managers

* "abc" --- 추상 베이스 클래스

* "atexit" --- 종료 처리기

  * "atexit" 예제

* "traceback" --- 스택 트레이스백 인쇄와 조회

  * "TracebackException" 객체

  * "StackSummary" 객체

  * "FrameSummary" 객체

  * 트레이스백 예제

* "__future__" --- 퓨처 문 정의

* "gc" --- 가비지 수거기 인터페이스

* "inspect" --- Inspect live objects

  * Types and members

  * Retrieving source code

  * Introspecting callables with the Signature object

  * Classes and functions

  * The interpreter stack

  * Fetching attributes statically

  * Current State of Generators and Coroutines

  * Code Objects Bit Flags

  * Command Line Interface

* "site" --- 사이트별 구성 훅

  * Readline 구성

  * 모듈 내용

  * Command Line Interface
