대체된 모듈
***********

이 장에서 설명하는 모듈은 대부분의 사용 사례에서 다른 모듈로 대체되었
으며, 주로 하위 호환성을 유지하기 위해 유지됩니다.

Modules may appear in this chapter because they only cover a limited
subset of a problem space, and a more generally applicable solution is
available elsewhere in the standard library (for example, "getopt"
covers the very specific task of "mimic the C "getopt()" API in
Python", rather than the broader command line option parsing and
argument parsing capabilities offered by "optparse" and "argparse").

Alternatively, modules may appear in this chapter because they are
deprecated outright, and awaiting removal in a future release, or they
are *soft deprecated* and their use is actively discouraged in new
projects. With the removal of various obsolete modules through **PEP
594**, there are currently no modules in this latter category.

* "getopt" --- 명령 줄 옵션용 C 스타일 구문 분석기
