파이썬 설명서 목차
******************

* 파이썬의 새로운 기능

  * 파이썬 3.7의 새로운 기능

    * 요약 -- 배포 주요 사항

    * 새로운 기능

      * PEP 563 : 어노테이션의 지연된 평가

      * PEP 538: 레거시 C 로케일 강제 변경

      * PEP 540: 강제 UTF-8 실행시간 모드

      * PEP 553: 내장 "breakpoint()"

      * PEP 539: 스레드-로컬 저장소를 위한 새로운 C API

      * PEP 562: 모듈 어트리뷰트에 대한 액세스 사용자 정의

      * PEP 564: 나노초 해상도의 새로운 시간 함수

      * PEP 565: "__main__" 의 DeprecationWarning 표시

      * PEP 560: "typing" 모듈과 제네릭 형에 대한 코어 지원

      * PEP 552: 해시 기반 .pyc 파일

      * PEP 545: 파이썬 설명서 번역

      * 개발 실행시간 모드: -X dev

    * 기타 언어 변경

    * 새 모듈

      * contextvars

      * dataclasses

      * importlib.resources

    * 개선된 모듈

      * argparse

      * asyncio

      * binascii

      * calendar

      * collections

      * compileall

      * concurrent.futures

      * contextlib

      * cProfile

      * crypt

      * datetime

      * dbm

      * decimal

      * dis

      * distutils

      * enum

      * functools

      * gc

      * hmac

      * http.client

      * http.server

      * idlelib 및 IDLE

      * importlib

      * io

      * ipaddress

      * itertools

      * locale

      * logging

      * math

      * mimetypes

      * msilib

      * multiprocessing

      * os

      * pathlib

      * pdb

      * py_compile

      * pydoc

      * queue

      * re

      * signal

      * socket

      * socketserver

      * sqlite3

      * ssl

      * string

      * subprocess

      * sys

      * time

      * tkinter

      * tracemalloc

      * types

      * unicodedata

      * unittest

      * unittest.mock

      * urllib.parse

      * uu

      * uuid

      * warnings

      * xml

      * xml.etree

      * xmlrpc.server

      * zipapp

      * zipfile

    * C API 변경

    * 빌드 변경

    * 최적화

    * 기타 CPython 구현 변경

    * 폐지된 파이썬 동작

    * 폐지된 파이썬 모듈, 함수 및 메서드

      * aifc

      * asyncio

      * collections

      * dbm

      * enum

      * gettext

      * importlib

      * locale

      * macpath

      * threading

      * socket

      * ssl

      * sunau

      * sys

      * wave

    * 폐지된 C API의 함수 및 형

    * 플랫폼 지원 제거

    * API 및 기능 제거

    * 모듈 제거

    * 윈도우 전용 변경

    * 파이썬 3.7로 이식하기

      * 파이썬 동작의 변경

      * 파이썬 API의 변경

      * C API의 변경

      * CPython 바이트 코드 변경

      * 윈도우 전용 변경

      * 기타 CPython 구현 변경

    * 파이썬 3.7.1의 주목할만한 변경 사항

    * 파이썬 3.7.2의 주목할만한 변경 사항

    * Notable changes in Python 3.7.6

    * Notable changes in Python 3.7.10

    * Notable changes in Python 3.7.11

    * Notable security feature in 3.7.14

  * What's New In Python 3.6

    * Summary -- Release highlights

    * New Features

      * PEP 498: Formatted string literals

      * PEP 526: Syntax for variable annotations

      * PEP 515: Underscores in Numeric Literals

      * PEP 525: Asynchronous Generators

      * PEP 530: Asynchronous Comprehensions

      * PEP 487: Simpler customization of class creation

      * PEP 487: Descriptor Protocol Enhancements

      * PEP 519: Adding a file system path protocol

      * PEP 495: Local Time Disambiguation

      * PEP 529: Change Windows filesystem encoding to UTF-8

      * PEP 528: Change Windows console encoding to UTF-8

      * PEP 520: Preserving Class Attribute Definition Order

      * PEP 468: Preserving Keyword Argument Order

      * New *dict* implementation

      * PEP 523: Adding a frame evaluation API to CPython

      * PYTHONMALLOC environment variable

      * DTrace and SystemTap probing support

    * Other Language Changes

    * New Modules

      * secrets

    * Improved Modules

      * array

      * ast

      * asyncio

      * binascii

      * cmath

      * collections

      * concurrent.futures

      * contextlib

      * datetime

      * decimal

      * distutils

      * email

      * encodings

      * enum

      * faulthandler

      * fileinput

      * hashlib

      * http.client

      * idlelib and IDLE

      * importlib

      * inspect

      * json

      * logging

      * math

      * multiprocessing

      * os

      * pathlib

      * pdb

      * pickle

      * pickletools

      * pydoc

      * random

      * re

      * readline

      * rlcompleter

      * shlex

      * site

      * sqlite3

      * socket

      * socketserver

      * ssl

      * statistics

      * struct

      * subprocess

      * sys

      * telnetlib

      * time

      * timeit

      * tkinter

      * traceback

      * tracemalloc

      * typing

      * unicodedata

      * unittest.mock

      * urllib.request

      * urllib.robotparser

      * venv

      * warnings

      * winreg

      * winsound

      * xmlrpc.client

      * zipfile

      * zlib

    * Optimizations

    * Build and C API Changes

    * Other Improvements

    * Deprecated

      * New Keywords

      * Deprecated Python behavior

      * Deprecated Python modules, functions and methods

        * asynchat

        * asyncore

        * dbm

        * distutils

        * grp

        * importlib

        * os

        * re

        * ssl

        * tkinter

        * venv

      * Deprecated functions and types of the C API

      * Deprecated Build Options

    * Removed

      * API and Feature Removals

    * Porting to Python 3.6

      * Changes in 'python' Command Behavior

      * Changes in the Python API

      * Changes in the C API

      * CPython bytecode changes

    * Notable changes in Python 3.6.2

      * New "make regen-all" build target

      * Removal of "make touch" build target

    * Notable changes in Python 3.6.4

    * Notable changes in Python 3.6.5

    * Notable changes in Python 3.6.7

    * Notable changes in Python 3.6.10

    * Notable changes in Python 3.6.13

  * What's New In Python 3.5

    * Summary -- Release highlights

    * New Features

      * PEP 492 - Coroutines with async and await syntax

      * PEP 465 - A dedicated infix operator for matrix multiplication

      * PEP 448 - Additional Unpacking Generalizations

      * PEP 461 - percent formatting support for bytes and bytearray

      * PEP 484 - Type Hints

      * PEP 471 - os.scandir() function -- a better and faster
        directory iterator

      * PEP 475: Retry system calls failing with EINTR

      * PEP 479: Change StopIteration handling inside generators

      * PEP 485: A function for testing approximate equality

      * PEP 486: Make the Python Launcher aware of virtual
        environments

      * PEP 488: Elimination of PYO files

      * PEP 489: Multi-phase extension module initialization

    * Other Language Changes

    * New Modules

      * typing

      * zipapp

    * Improved Modules

      * argparse

      * asyncio

      * bz2

      * cgi

      * cmath

      * code

      * collections

      * collections.abc

      * compileall

      * concurrent.futures

      * configparser

      * contextlib

      * csv

      * curses

      * dbm

      * difflib

      * distutils

      * doctest

      * email

      * enum

      * faulthandler

      * functools

      * glob

      * gzip

      * heapq

      * http

      * http.client

      * idlelib and IDLE

      * imaplib

      * imghdr

      * importlib

      * inspect

      * io

      * ipaddress

      * json

      * linecache

      * locale

      * logging

      * lzma

      * math

      * multiprocessing

      * operator

      * os

      * pathlib

      * pickle

      * poplib

      * re

      * readline

      * selectors

      * shutil

      * signal

      * smtpd

      * smtplib

      * sndhdr

      * socket

      * ssl

        * Memory BIO Support

        * Application-Layer Protocol Negotiation Support

        * Other Changes

      * sqlite3

      * subprocess

      * sys

      * sysconfig

      * tarfile

      * threading

      * time

      * timeit

      * tkinter

      * traceback

      * types

      * unicodedata

      * unittest

      * unittest.mock

      * urllib

      * wsgiref

      * xmlrpc

      * xml.sax

      * zipfile

    * Other module-level changes

    * Optimizations

    * Build and C API Changes

    * Deprecated

      * New Keywords

      * Deprecated Python Behavior

      * Unsupported Operating Systems

      * Deprecated Python modules, functions and methods

    * Removed

      * API and Feature Removals

    * Porting to Python 3.5

      * Changes in Python behavior

      * Changes in the Python API

      * Changes in the C API

    * Notable changes in Python 3.5.4

      * New "make regen-all" build target

      * Removal of "make touch" build target

  * What's New In Python 3.4

    * Summary -- Release Highlights

    * New Features

      * PEP 453: Explicit Bootstrapping of PIP in Python Installations

        * Bootstrapping pip By Default

        * Documentation Changes

      * PEP 446: Newly Created File Descriptors Are Non-Inheritable

      * Improvements to Codec Handling

      * PEP 451: A ModuleSpec Type for the Import System

      * Other Language Changes

    * New Modules

      * asyncio

      * ensurepip

      * enum

      * pathlib

      * selectors

      * statistics

      * tracemalloc

    * Improved Modules

      * abc

      * aifc

      * argparse

      * audioop

      * base64

      * collections

      * colorsys

      * contextlib

      * dbm

      * dis

      * doctest

      * email

      * filecmp

      * functools

      * gc

      * glob

      * hashlib

      * hmac

      * html

      * http

      * idlelib and IDLE

      * importlib

      * inspect

      * ipaddress

      * logging

      * marshal

      * mmap

      * multiprocessing

      * operator

      * os

      * pdb

      * pickle

      * plistlib

      * poplib

      * pprint

      * pty

      * pydoc

      * re

      * resource

      * select

      * shelve

      * shutil

      * smtpd

      * smtplib

      * socket

      * sqlite3

      * ssl

      * stat

      * struct

      * subprocess

      * sunau

      * sys

      * tarfile

      * textwrap

      * threading

      * traceback

      * types

      * urllib

      * unittest

      * venv

      * wave

      * weakref

      * xml.etree

      * zipfile

    * CPython Implementation Changes

      * PEP 445: Customization of CPython Memory Allocators

      * PEP 442: Safe Object Finalization

      * PEP 456: Secure and Interchangeable Hash Algorithm

      * PEP 436: Argument Clinic

      * Other Build and C API Changes

      * Other Improvements

      * Significant Optimizations

    * Deprecated

      * Deprecations in the Python API

      * Deprecated Features

    * Removed

      * Operating Systems No Longer Supported

      * API and Feature Removals

      * Code Cleanups

    * Porting to Python 3.4

      * Changes in 'python' Command Behavior

      * Changes in the Python API

      * Changes in the C API

    * Changed in 3.4.3

      * PEP 476: Enabling certificate verification by default for
        stdlib http clients

  * What's New In Python 3.3

    * Summary -- Release highlights

    * PEP 405: Virtual Environments

    * PEP 420: Implicit Namespace Packages

    * PEP 3118: New memoryview implementation and buffer protocol
      documentation

      * Features

      * API changes

    * PEP 393: Flexible String Representation

      * Functionality

      * Performance and resource usage

    * PEP 397: Python Launcher for Windows

    * PEP 3151: Reworking the OS and IO exception hierarchy

    * PEP 380: Syntax for Delegating to a Subgenerator

    * PEP 409: Suppressing exception context

    * PEP 414: Explicit Unicode literals

    * PEP 3155: Qualified name for classes and functions

    * PEP 412: Key-Sharing Dictionary

    * PEP 362: Function Signature Object

    * PEP 421: Adding sys.implementation

      * SimpleNamespace

    * Using importlib as the Implementation of Import

      * New APIs

      * Visible Changes

    * Other Language Changes

    * A Finer-Grained Import Lock

    * Builtin functions and types

    * New Modules

      * faulthandler

      * ipaddress

      * lzma

    * Improved Modules

      * abc

      * array

      * base64

      * binascii

      * bz2

      * codecs

      * collections

      * contextlib

      * crypt

      * curses

      * datetime

      * decimal

        * Features

        * API changes

      * email

        * Policy Framework

        * Provisional Policy with New Header API

        * Other API Changes

      * ftplib

      * functools

      * gc

      * hmac

      * http

      * html

      * imaplib

      * inspect

      * io

      * itertools

      * logging

      * math

      * mmap

      * multiprocessing

      * nntplib

      * os

      * pdb

      * pickle

      * pydoc

      * re

      * sched

      * select

      * shlex

      * shutil

      * signal

      * smtpd

      * smtplib

      * socket

      * socketserver

      * sqlite3

      * ssl

      * stat

      * struct

      * subprocess

      * sys

      * tarfile

      * tempfile

      * textwrap

      * threading

      * time

      * types

      * unittest

      * urllib

      * webbrowser

      * xml.etree.ElementTree

      * zlib

    * Optimizations

    * Build and C API Changes

    * Deprecated

      * Unsupported Operating Systems

      * Deprecated Python modules, functions and methods

      * Deprecated functions and types of the C API

      * Deprecated features

    * Porting to Python 3.3

      * Porting Python code

      * Porting C code

      * Building C extensions

      * Command Line Switch Changes

  * What's New In Python 3.2

    * PEP 384: Defining a Stable ABI

    * PEP 389: Argparse Command Line Parsing Module

    * PEP 391:  Dictionary Based Configuration for Logging

    * PEP 3148:  The "concurrent.futures" module

    * PEP 3147:  PYC Repository Directories

    * PEP 3149: ABI Version Tagged .so Files

    * PEP 3333: Python Web Server Gateway Interface v1.0.1

    * Other Language Changes

    * New, Improved, and Deprecated Modules

      * email

      * elementtree

      * functools

      * itertools

      * collections

      * threading

      * datetime and time

      * math

      * abc

      * io

      * reprlib

      * logging

      * csv

      * contextlib

      * decimal and fractions

      * ftp

      * popen

      * select

      * gzip and zipfile

      * tarfile

      * hashlib

      * ast

      * os

      * shutil

      * sqlite3

      * html

      * socket

      * ssl

      * nntp

      * certificates

      * imaplib

      * http.client

      * unittest

      * random

      * poplib

      * asyncore

      * tempfile

      * inspect

      * pydoc

      * dis

      * dbm

      * ctypes

      * site

      * sysconfig

      * pdb

      * configparser

      * urllib.parse

      * mailbox

      * turtledemo

    * Multi-threading

    * Optimizations

    * Unicode

    * Codecs

    * Documentation

    * IDLE

    * Code Repository

    * Build and C API Changes

    * Porting to Python 3.2

  * What's New In Python 3.1

    * PEP 372: Ordered Dictionaries

    * PEP 378: Format Specifier for Thousands Separator

    * Other Language Changes

    * New, Improved, and Deprecated Modules

    * Optimizations

    * IDLE

    * Build and C API Changes

    * Porting to Python 3.1

  * What's New In Python 3.0

    * Common Stumbling Blocks

      * Print Is A Function

      * Views And Iterators Instead Of Lists

      * Ordering Comparisons

      * Integers

      * Text Vs. Data Instead Of Unicode Vs. 8-bit

    * Overview Of Syntax Changes

      * New Syntax

      * Changed Syntax

      * Removed Syntax

    * Changes Already Present In Python 2.6

    * Library Changes

    * **PEP 3101**: A New Approach To String Formatting

    * Changes To Exceptions

    * Miscellaneous Other Changes

      * Operators And Special Methods

      * Builtins

    * Build and C API Changes

    * Performance

    * Porting To Python 3.0

  * What's New in Python 2.7

    * The Future for Python 2.x

    * Changes to the Handling of Deprecation Warnings

    * Python 3.1 Features

    * PEP 372: Adding an Ordered Dictionary to collections

    * PEP 378: Format Specifier for Thousands Separator

    * PEP 389: The argparse Module for Parsing Command Lines

    * PEP 391: Dictionary-Based Configuration For Logging

    * PEP 3106: Dictionary Views

    * PEP 3137: The memoryview Object

    * Other Language Changes

      * Interpreter Changes

      * Optimizations

    * New and Improved Modules

      * New module: importlib

      * New module: sysconfig

      * ttk: Themed Widgets for Tk

      * Updated module: unittest

      * Updated module: ElementTree 1.3

    * Build and C API Changes

      * Capsules

      * Port-Specific Changes: Windows

      * Port-Specific Changes: Mac OS X

      * Port-Specific Changes: FreeBSD

    * Other Changes and Fixes

    * Porting to Python 2.7

    * New Features Added to Python 2.7 Maintenance Releases

      * Two new environment variables for debug mode

      * PEP 434: IDLE Enhancement Exception for All Branches

      * PEP 466: Network Security Enhancements for Python 2.7

      * PEP 477: Backport ensurepip (PEP 453) to Python 2.7

        * Bootstrapping pip By Default

        * Documentation Changes

      * PEP 476: Enabling certificate verification by default for
        stdlib http clients

      * PEP 493: HTTPS verification migration tools for Python 2.7

      * New "make regen-all" build target

      * Removal of "make touch" build target

    * Acknowledgements

  * What's New in Python 2.6

    * Python 3.0

    * Changes to the Development Process

      * New Issue Tracker: Roundup

      * New Documentation Format: reStructuredText Using Sphinx

    * PEP 343: The 'with' statement

      * Writing Context Managers

      * The contextlib module

    * PEP 366: Explicit Relative Imports From a Main Module

    * PEP 370: Per-user "site-packages" Directory

    * PEP 371: The "multiprocessing" Package

    * PEP 3101: Advanced String Formatting

    * PEP 3105: "print" As a Function

    * PEP 3110: Exception-Handling Changes

    * PEP 3112: Byte Literals

    * PEP 3116: New I/O Library

    * PEP 3118: Revised Buffer Protocol

    * PEP 3119: Abstract Base Classes

    * PEP 3127: Integer Literal Support and Syntax

    * PEP 3129: Class Decorators

    * PEP 3141: A Type Hierarchy for Numbers

      * The "fractions" Module

    * Other Language Changes

      * Optimizations

      * Interpreter Changes

    * New and Improved Modules

      * The "ast" module

      * The "future_builtins" module

      * The "json" module: JavaScript Object Notation

      * The "plistlib" module: A Property-List Parser

      * ctypes Enhancements

      * Improved SSL Support

    * Deprecations and Removals

    * Build and C API Changes

      * Port-Specific Changes: Windows

      * Port-Specific Changes: Mac OS X

      * Port-Specific Changes: IRIX

    * Porting to Python 2.6

    * Acknowledgements

  * What's New in Python 2.5

    * PEP 308: Conditional Expressions

    * PEP 309: Partial Function Application

    * PEP 314: Metadata for Python Software Packages v1.1

    * PEP 328: Absolute and Relative Imports

    * PEP 338: Executing Modules as Scripts

    * PEP 341: Unified try/except/finally

    * PEP 342: New Generator Features

    * PEP 343: The 'with' statement

      * Writing Context Managers

      * The contextlib module

    * PEP 352: Exceptions as New-Style Classes

    * PEP 353: Using ssize_t as the index type

    * PEP 357: The '__index__' method

    * Other Language Changes

      * Interactive Interpreter Changes

      * Optimizations

    * New, Improved, and Removed Modules

      * The ctypes package

      * The ElementTree package

      * The hashlib package

      * The sqlite3 package

      * The wsgiref package

    * Build and C API Changes

      * Port-Specific Changes

    * Porting to Python 2.5

    * Acknowledgements

  * What's New in Python 2.4

    * PEP 218: Built-In Set Objects

    * PEP 237: Unifying Long Integers and Integers

    * PEP 289: Generator Expressions

    * PEP 292: Simpler String Substitutions

    * PEP 318: Decorators for Functions and Methods

    * PEP 322: Reverse Iteration

    * PEP 324: New subprocess Module

    * PEP 327: Decimal Data Type

      * Why is Decimal needed?

      * The "Decimal" type

      * The "Context" type

    * PEP 328: Multi-line Imports

    * PEP 331: Locale-Independent Float/String Conversions

    * Other Language Changes

      * Optimizations

    * New, Improved, and Deprecated Modules

      * cookielib

      * doctest

    * Build and C API Changes

      * Port-Specific Changes

    * Porting to Python 2.4

    * Acknowledgements

  * What's New in Python 2.3

    * PEP 218: A Standard Set Datatype

    * PEP 255: Simple Generators

    * PEP 263: Source Code Encodings

    * PEP 273: Importing Modules from ZIP Archives

    * PEP 277: Unicode file name support for Windows NT

    * PEP 278: Universal Newline Support

    * PEP 279: enumerate()

    * PEP 282: The logging Package

    * PEP 285: A Boolean Type

    * PEP 293: Codec Error Handling Callbacks

    * PEP 301: Package Index and Metadata for Distutils

    * PEP 302: New Import Hooks

    * PEP 305: Comma-separated Files

    * PEP 307: Pickle Enhancements

    * Extended Slices

    * Other Language Changes

      * String Changes

      * Optimizations

    * New, Improved, and Deprecated Modules

      * Date/Time Type

      * The optparse Module

    * Pymalloc: A Specialized Object Allocator

    * Build and C API Changes

      * Port-Specific Changes

    * Other Changes and Fixes

    * Porting to Python 2.3

    * Acknowledgements

  * What's New in Python 2.2

    * Introduction

    * PEPs 252 and 253: Type and Class Changes

      * Old and New Classes

      * Descriptors

      * Multiple Inheritance: The Diamond Rule

      * Attribute Access

      * Related Links

    * PEP 234: Iterators

    * PEP 255: Simple Generators

    * PEP 237: Unifying Long Integers and Integers

    * PEP 238: Changing the Division Operator

    * Unicode Changes

    * PEP 227: Nested Scopes

    * New and Improved Modules

    * Interpreter Changes and Fixes

    * Other Changes and Fixes

    * Acknowledgements

  * What's New in Python 2.1

    * Introduction

    * PEP 227: Nested Scopes

    * PEP 236: __future__ Directives

    * PEP 207: Rich Comparisons

    * PEP 230: Warning Framework

    * PEP 229: New Build System

    * PEP 205: Weak References

    * PEP 232: Function Attributes

    * PEP 235: Importing Modules on Case-Insensitive Platforms

    * PEP 217: Interactive Display Hook

    * PEP 208: New Coercion Model

    * PEP 241: Metadata in Python Packages

    * New and Improved Modules

    * Other Changes and Fixes

    * Acknowledgements

  * What's New in Python 2.0

    * Introduction

    * What About Python 1.6?

    * New Development Process

    * Unicode

    * List Comprehensions

    * Augmented Assignment

    * String Methods

    * Garbage Collection of Cycles

    * Other Core Changes

      * Minor Language Changes

      * Changes to Built-in Functions

    * Porting to 2.0

    * Extending/Embedding Changes

    * Distutils: Making Modules Easy to Install

    * XML Modules

      * SAX2 Support

      * DOM Support

      * Relationship to PyXML

    * Module changes

    * New modules

    * IDLE Improvements

    * Deleted and Deprecated Modules

    * Acknowledgements

  * Changelog

    * Python next

      * Windows

    * Python 3.7.16 final

      * Security

    * Python 3.7.15 final

      * Security

      * Core and Builtins

      * Library

      * Windows

    * Python 3.7.14 final

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Windows

    * Python 3.7.13 final

      * Library

      * Build

      * Windows

    * Python 3.7.12 final

      * Security

      * Library

    * Python 3.7.11 final

      * Security

      * Core and Builtins

      * Tests

    * Python 3.7.10 final

      * Security

      * Library

      * Documentation

      * Tests

    * Python 3.7.9 final

      * Security

      * Core and Builtins

      * Library

      * macOS

    * Python 3.7.8 final

      * Tests

      * macOS

    * Python 3.7.8 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.7.7 final

      * Library

      * Documentation

    * Python 3.7.7 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

    * Python 3.7.6 final

      * macOS

    * Python 3.7.6 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.7.5 final

      * Library

      * Windows

    * Python 3.7.5 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

    * Python 3.7.4 final

      * Core and Builtins

      * Documentation

    * Python 3.7.4 release candidate 2

      * Security

      * Core and Builtins

      * Library

      * Windows

      * macOS

    * Python 3.7.4 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.7.3 final

    * Python 3.7.3 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.7.2 final

      * Library

      * Build

      * C API

    * Python 3.7.2 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.7.1 final

      * Library

    * Python 3.7.1 release candidate 2

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * macOS

      * C API

    * Python 3.7.1 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.7.0 final

      * Library

      * C API

    * Python 3.7.0 release candidate 1

      * Core and Builtins

      * Library

      * Documentation

      * Build

      * Windows

      * IDLE

    * Python 3.7.0 beta 5

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * macOS

      * IDLE

    * Python 3.7.0 beta 4

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

    * Python 3.7.0 beta 3

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.7.0 beta 2

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

    * Python 3.7.0 beta 1

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * C API

    * Python 3.7.0 alpha 4

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Windows

      * Tools/Demos

      * C API

    * Python 3.7.0 alpha 3

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.7.0 alpha 2

      * Core and Builtins

      * Library

      * Documentation

      * Build

      * IDLE

      * C API

    * Python 3.7.0 alpha 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.6.6 final

    * Python 3.6.6 release candidate 1

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.6.5 final

      * Tests

      * Build

    * Python 3.6.5 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.6.4 final

    * Python 3.6.4 release candidate 1

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * macOS

      * IDLE

      * Tools/Demos

      * C API

    * Python 3.6.3 final

      * Library

      * Build

    * Python 3.6.3 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * IDLE

      * Tools/Demos

    * Python 3.6.2 final

    * Python 3.6.2 release candidate 2

      * Security

    * Python 3.6.2 release candidate 1

      * Core and Builtins

      * Library

      * Security

      * Library

      * IDLE

      * C API

      * Build

      * Documentation

      * Tools/Demos

      * Tests

      * Windows

    * Python 3.6.1 final

      * Core and Builtins

      * Build

    * Python 3.6.1 release candidate 1

      * Core and Builtins

      * Library

      * IDLE

      * Windows

      * C API

      * Documentation

      * Tests

      * Build

    * Python 3.6.0 final

    * Python 3.6.0 release candidate 2

      * Core and Builtins

      * Tools/Demos

      * Windows

      * Build

    * Python 3.6.0 release candidate 1

      * Core and Builtins

      * Library

      * C API

      * Documentation

      * Tools/Demos

    * Python 3.6.0 beta 4

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

    * Python 3.6.0 beta 3

      * Core and Builtins

      * Library

      * Windows

      * Build

      * Tests

    * Python 3.6.0 beta 2

      * Core and Builtins

      * Library

      * Windows

      * C API

      * Build

      * Tests

    * Python 3.6.0 beta 1

      * Core and Builtins

      * Library

      * IDLE

      * C API

      * Tests

      * Build

      * Tools/Demos

      * Windows

    * Python 3.6.0 alpha 4

      * Core and Builtins

      * Library

      * IDLE

      * Tests

      * Windows

      * Build

    * Python 3.6.0 alpha 3

      * Core and Builtins

      * Library

      * Security

      * Library

      * Security

      * Library

      * IDLE

      * C API

      * Build

      * Tools/Demos

      * Documentation

      * Tests

    * Python 3.6.0 alpha 2

      * Core and Builtins

      * Library

      * Security

      * Library

      * Security

      * Library

      * IDLE

      * Documentation

      * Tests

      * Windows

      * Build

      * Windows

      * C API

      * Tools/Demos

    * Python 3.6.0 alpha 1

      * Core and Builtins

      * Library

      * Security

      * Library

      * Security

      * Library

      * Security

      * Library

      * IDLE

      * Documentation

      * Tests

      * Build

      * Windows

      * Tools/Demos

      * C API

    * Python 3.5.5 final

    * Python 3.5.5 release candidate 1

      * Security

      * Core and Builtins

      * Library

    * Python 3.5.4 final

      * Library

    * Python 3.5.4 release candidate 1

      * Security

      * Core and Builtins

      * Library

      * Documentation

      * Tests

      * Build

      * Windows

      * C API

    * Python 3.5.3 final

    * Python 3.5.3 release candidate 1

      * Core and Builtins

      * Library

      * Security

      * Library

      * Security

      * Library

      * IDLE

      * C API

      * Documentation

      * Tests

      * Tools/Demos

      * Windows

      * Build

    * Python 3.5.2 final

      * Core and Builtins

      * Tests

      * IDLE

    * Python 3.5.2 release candidate 1

      * Core and Builtins

      * Security

      * Library

      * Security

      * Library

      * Security

      * Library

      * Security

      * Library

      * Security

      * Library

      * IDLE

      * Documentation

      * Tests

      * Build

      * Windows

      * Tools/Demos

      * Windows

    * Python 3.5.1 final

      * Core and Builtins

      * Windows

    * Python 3.5.1 release candidate 1

      * Core and Builtins

      * Library

      * IDLE

      * Documentation

      * Tests

      * Build

      * Windows

      * Tools/Demos

    * Python 3.5.0 final

      * Build

    * Python 3.5.0 release candidate 4

      * Library

      * Build

    * Python 3.5.0 release candidate 3

      * Core and Builtins

      * Library

    * Python 3.5.0 release candidate 2

      * Core and Builtins

      * Library

    * Python 3.5.0 release candidate 1

      * Core and Builtins

      * Library

      * IDLE

      * Documentation

      * Tests

    * Python 3.5.0 beta 4

      * Core and Builtins

      * Library

      * Build

    * Python 3.5.0 beta 3

      * Core and Builtins

      * Library

      * Tests

      * Documentation

      * Build

    * Python 3.5.0 beta 2

      * Core and Builtins

      * Library

    * Python 3.5.0 beta 1

      * Core and Builtins

      * Library

      * IDLE

      * Tests

      * Documentation

      * Tools/Demos

    * Python 3.5.0 alpha 4

      * Core and Builtins

      * Library

      * Build

      * Tests

      * Tools/Demos

      * C API

    * Python 3.5.0 alpha 3

      * Core and Builtins

      * Library

      * Build

      * Tests

      * Tools/Demos

    * Python 3.5.0 alpha 2

      * Core and Builtins

      * Library

      * Build

      * C API

      * Windows

    * Python 3.5.0 alpha 1

      * Core and Builtins

      * Library

      * IDLE

      * Build

      * C API

      * Documentation

      * Tests

      * Tools/Demos

      * Windows

* 파이썬 자습서

  * 1. 입맛 돋우기

  * 2. 파이썬 인터프리터 사용하기

    * 2.1. 인터프리터 실행하기

      * 2.1.1. 인자 전달

      * 2.1.2. 대화형 모드

    * 2.2. 인터프리터와 환경

      * 2.2.1. 소스 코드 인코딩

  * 3. 파이썬의 간략한 소개

    * 3.1. 파이썬을 계산기로 사용하기

      * 3.1.1. 숫자

      * 3.1.2. 문자열

      * 3.1.3. 리스트

    * 3.2. 프로그래밍으로의 첫걸음

  * 4. 기타 제어 흐름 도구

    * 4.1. "if" 문

    * 4.2. "for" 문

    * 4.3. "range()" 함수

    * 4.4. 루프의 "break" 와 "continue" 문, 그리고 "else" 절

    * 4.5. "pass" 문

    * 4.6. 함수 정의하기

    * 4.7. 함수 정의 더 보기

      * 4.7.1. 기본 인자 값

      * 4.7.2. 키워드 인자

      * 4.7.3. 임의의 인자 목록

      * 4.7.4. 인자 목록 언 패킹

      * 4.7.5. 람다 표현식

      * 4.7.6. 도큐멘테이션 문자열

      * 4.7.7. 함수 어노테이션

    * 4.8. 막간극: 코딩 스타일

  * 5. 자료 구조

    * 5.1. 리스트 더 보기

      * 5.1.1. 리스트를 스택으로 사용하기

      * 5.1.2. 리스트를 큐로 사용하기

      * 5.1.3. 리스트 컴프리헨션

      * 5.1.4. 중첩된 리스트 컴프리헨션

    * 5.2. "del" 문

    * 5.3. 튜플과 시퀀스

    * 5.4. 집합

    * 5.5. 딕셔너리

    * 5.6. 루프 테크닉

    * 5.7. 조건 더 보기

    * 5.8. 시퀀스와 다른 형들을 비교하기

  * 6. 모듈

    * 6.1. 모듈 더 보기

      * 6.1.1. 모듈을 스크립트로 실행하기

      * 6.1.2. 모듈 검색 경로

      * 6.1.3. "컴파일된" 파이썬 파일

    * 6.2. 표준 모듈들

    * 6.3. "dir()" 함수

    * 6.4. 패키지

      * 6.4.1. 패키지에서 * 임포트 하기

      * 6.4.2. 패키지 내부 간의 참조

      * 6.4.3. 여러 디렉터리에 있는 패키지

  * 7. 입력과 출력

    * 7.1. 장식적인 출력 포매팅

      * 7.1.1. 포맷 문자열 리터럴

      * 7.1.2. 문자열 format() 메서드

      * 7.1.3. 수동 문자열 포매팅

      * 7.1.4. 예전의 문자열 포매팅

    * 7.2. 파일을 읽고 쓰기

      * 7.2.1. 파일 객체의 매소드

      * 7.2.2. "json" 으로 구조적인 데이터를 저장하기

  * 8. 에러와 예외

    * 8.1. 문법 에러

    * 8.2. 예외

    * 8.3. 예외 처리하기

    * 8.4. 예외 일으키기

    * 8.5. 사용자 정의 예외

    * 8.6. 뒷정리 동작 정의하기

    * 8.7. 미리 정의된 뒷정리 동작들

  * 9. 클래스

    * 9.1. 이름과 객체에 관한 한마디

    * 9.2. 파이썬 스코프와 이름 공간

      * 9.2.1. 스코프와 이름 공간 예

    * 9.3. 클래스와의 첫 만남

      * 9.3.1. 클래스 정의 문법

      * 9.3.2. 클래스 객체

      * 9.3.3. 인스턴스 객체

      * 9.3.4. 메서드 객체

      * 9.3.5. 클래스와 인스턴스 변수

    * 9.4. 기타 주의사항들

    * 9.5. 상속

      * 9.5.1. 다중 상속

    * 9.6. 비공개 변수

    * 9.7. 잡동사니

    * 9.8. 이터레이터

    * 9.9. 제너레이터

    * 9.10. 제너레이터 표현식

  * 10. 표준 라이브러리 둘러보기

    * 10.1. 운영 체제 인터페이스

    * 10.2. 파일 와일드카드

    * 10.3. 명령행 인자

    * 10.4. 에러 출력 리디렉션과 프로그램 종료

    * 10.5. 문자열 패턴 매칭

    * 10.6. 수학

    * 10.7. 인터넷 액세스

    * 10.8. 날짜와 시간

    * 10.9. 데이터 압축

    * 10.10. 성능 측정

    * 10.11. 품질 관리

    * 10.12. 배터리가 포함됩니다

  * 11. 표준 라이브러리 둘러보기 --- 2부

    * 11.1. 출력 포매팅

    * 11.2. 템플릿

    * 11.3. 바이너리 데이터 레코드 배치 작업

    * 11.4. 다중 스레딩

    * 11.5. 로깅

    * 11.6. 약한 참조

    * 11.7. 리스트 작업 도구

    * 11.8. 10진 부동 소수점 산술

  * 12. 가상 환경 및 패키지

    * 12.1. 소개

    * 12.2. 가상 환경 만들기

    * 12.3. pip로 패키지 관리하기

  * 13. 이제 뭘 하지?

  * 14. 대화형 입력 편집 및 히스토리 치환

    * 14.1. 탭 완성 및 히스토리 편집

    * 14.2. 대화형 인터프리터 대안

  * 15. 부동 소수점 산술: 문제점 및 한계

    * 15.1. 표현 오류

  * 16. 부록

    * 16.1. 대화형 모드

      * 16.1.1. 에러 처리

      * 16.1.2. 실행 가능한 파이썬 스크립트

      * 16.1.3. 대화형 시작 파일

      * 16.1.4. 커스터마이제이션 모듈

* 파이썬 설정 및 사용법

  * 1. 명령 줄과 환경

    * 1.1. 명령 줄

      * 1.1.1. 인터페이스 옵션

      * 1.1.2. 일반 옵션

      * 1.1.3. 기타 옵션

      * 1.1.4. 사용해서는 안 되는 옵션

    * 1.2. 환경 변수

      * 1.2.1. 디버그 모드 변수

  * 2. 유닉스 플랫폼에서 파이썬 사용하기

    * 2.1. 최신 버전의 파이썬 내려받기와 설치

      * 2.1.1. 리눅스

      * 2.1.2. FreeBSD와 OpenBSD

      * 2.1.3. OpenSolaris

    * 2.2. 파이썬 빌드하기

    * 2.3. 파이썬 관련 경로와 파일

    * 2.4. 잡동사니

  * 3. Using Python on Windows

    * 3.1. The full installer

      * 3.1.1. Installation steps

      * 3.1.2. Removing the MAX_PATH Limitation

      * 3.1.3. Installing Without UI

      * 3.1.4. Installing Without Downloading

      * 3.1.5. Modifying an install

    * 3.2. The Microsoft Store package

      * 3.2.1. Known Issues

    * 3.3. The nuget.org packages

    * 3.4. The embeddable package

      * 3.4.1. Python Application

      * 3.4.2. Embedding Python

    * 3.5. Alternative bundles

    * 3.6. Configuring Python

      * 3.6.1. Excursus: Setting environment variables

      * 3.6.2. Finding the Python executable

    * 3.7. UTF-8 mode

    * 3.8. Python Launcher for Windows

      * 3.8.1. Getting started

        * 3.8.1.1. From the command-line

        * 3.8.1.2. Virtual environments

        * 3.8.1.3. From a script

        * 3.8.1.4. From file associations

      * 3.8.2. Shebang Lines

      * 3.8.3. Arguments in shebang lines

      * 3.8.4. Customization

        * 3.8.4.1. Customization via INI files

        * 3.8.4.2. Customizing default Python versions

      * 3.8.5. Diagnostics

    * 3.9. Finding modules

    * 3.10. Additional modules

      * 3.10.1. PyWin32

      * 3.10.2. cx_Freeze

      * 3.10.3. WConio

    * 3.11. Compiling Python on Windows

    * 3.12. Other Platforms

  * 4. 매킨토시에서 파이썬 사용하기

    * 4.1. MacPython을 구하고 설치하기

      * 4.1.1. 파이썬 스크립트를 실행하는 방법

      * 4.1.2. GUI로 스크립트 실행하기

      * 4.1.3. 구성

    * 4.2. IDE

    * 4.3. 추가 파이썬 패키지 설치하기

    * 4.4. Mac에서의 GUI 프로그래밍

    * 4.5. Mac에서 파이썬 응용 프로그램 배포하기

    * 4.6. 기타 자원

  * 5. Editors and IDEs

* 파이썬 언어 레퍼런스

  * 1. 개요

    * 1.1. 대안 구현들

    * 1.2. 표기법

  * 2. 어휘 분석

    * 2.1. 줄 구조(Line structure)

      * 2.1.1. 논리적인 줄

      * 2.1.2. 물리적인 줄

      * 2.1.3. 주석

      * 2.1.4. 인코딩 선언

      * 2.1.5. 명시적인 줄 결합

      * 2.1.6. 묵시적인 줄 결합

      * 2.1.7. 빈 줄

      * 2.1.8. 들여쓰기

      * 2.1.9. 토큰 사이의 공백

    * 2.2. 다른 토큰들

    * 2.3. 식별자와 키워드

      * 2.3.1. 키워드

      * 2.3.2. 식별자의 예약 영역

    * 2.4. 리터럴

      * 2.4.1. 문자열과 바이트열 리터럴

      * 2.4.2. 문자열 리터럴 이어붙이기

      * 2.4.3. 포맷 문자열 리터럴

      * 2.4.4. 숫자 리터럴

      * 2.4.5. 정수 리터럴

      * 2.4.6. 실수 리터럴

      * 2.4.7. 허수 리터럴

    * 2.5. 연산자

    * 2.6. 구분자

  * 3. 데이터 모델

    * 3.1. 객체, 값, 형

    * 3.2. 표준형 계층

    * 3.3. 특수 메서드 이름들

      * 3.3.1. 기본적인 커스터마이제이션

      * 3.3.2. 어트리뷰트 액세스 커스터마이제이션

        * 3.3.2.1. 모듈 어트리뷰트 액세스 커스터마이제이션

        * 3.3.2.2. 디스크립터 구현하기

        * 3.3.2.3. 디스크립터 호출하기

        * 3.3.2.4. __slots__

          * 3.3.2.4.1. *__slots__* 사용에 관한 노트

      * 3.3.3. 클래스 생성 커스터마이제이션

        * 3.3.3.1. 메타 클래스

        * 3.3.3.2. MRO 항목 결정하기

        * 3.3.3.3. 적절한 메타 클래스 선택하기

        * 3.3.3.4. 클래스 이름 공간 준비하기

        * 3.3.3.5. 클래스 바디 실행하기

        * 3.3.3.6. 클래스 객체 만들기

        * 3.3.3.7. 메타 클래스의 용도

      * 3.3.4. 인스턴스 및 서브 클래스 검사 커스터마이제이션

      * 3.3.5. 제네릭 형 흉내 내기

      * 3.3.6. 콜러블 객체 흉내 내기

      * 3.3.7. 컨테이너형 흉내 내기

      * 3.3.8. 숫자 형 흉내 내기

      * 3.3.9. with 문 컨텍스트 관리자

      * 3.3.10. 특수 메서드 조회

    * 3.4. 코루틴(Coroutines)

      * 3.4.1. 어웨이터블 객체(Awaitable Objects)

      * 3.4.2. 코루틴 객체(Coroutine Objects)

      * 3.4.3. 비동기 이터레이터(Asynchronous Iterators)

      * 3.4.4. 비동기 컨텍스트 관리자

  * 4. 실행 모델

    * 4.1. 프로그램의 구조

    * 4.2. 이름과 연결(binding)

      * 4.2.1. 이름의 연결

      * 4.2.2. 이름의 검색(resolution)

      * 4.2.3. builtins 와 제한된 실행

      * 4.2.4. 동적 기능과의 상호작용

    * 4.3. 예외

  * 5. 임포트 시스템

    * 5.1. "importlib"

    * 5.2. 패키지(package)

      * 5.2.1. 정규 패키지

      * 5.2.2. 이름 공간 패키지

    * 5.3. 검색

      * 5.3.1. 모듈 캐시

      * 5.3.2. 파인더(finder)와 로더(loader)

      * 5.3.3. 임포트 훅(import hooks)

      * 5.3.4. 메타 경로(meta path)

    * 5.4. 로딩(loading)

      * 5.4.1. 로더

      * 5.4.2. 서브 모듈

      * 5.4.3. 모듈 스펙

      * 5.4.4. 임포트 관련 모듈 어트리뷰트

      * 5.4.5. module.__path__

      * 5.4.6. 모듈 repr

      * 5.4.7. 캐시된 바이트 코드 무효화

    * 5.5. 경로 기반 파인더

      * 5.5.1. 경로 엔트리 파인더

      * 5.5.2. 경로 엔트리 파인더 프로토콜

    * 5.6. 표준 임포트 시스템 교체하기

    * 5.7. 패키지 상대 임포트

    * 5.8. __main__ 에 대한 특별한 고려

      * 5.8.1. __main__.__spec__

    * 5.9. 열린 이슈들

    * 5.10. 참고문헌

  * 6. 표현식

    * 6.1. 산술 변환

    * 6.2. 아톰 (Atoms)

      * 6.2.1. 식별자 (이름)

      * 6.2.2. 리터럴 (Literals)

      * 6.2.3. 괄호 안에 넣은 형

      * 6.2.4. 리스트, 집합, 딕셔너리의 디스플레이(display)

      * 6.2.5. 리스트 디스플레이

      * 6.2.6. 집합 디스플레이

      * 6.2.7. 딕셔너리 디스플레이

      * 6.2.8. 제너레이터 표현식 (Generator expressions)

      * 6.2.9. 일드 표현식(Yield expressions)

        * 6.2.9.1. 제너레이터-이터레이터 메서드

        * 6.2.9.2. 사용 예

        * 6.2.9.3. 비동기 제너레이터 함수

        * 6.2.9.4. 비동기 제너레이터-이터레이터 메서드

    * 6.3. 프라이머리

      * 6.3.1. 어트리뷰트 참조

      * 6.3.2. 서브스크립션(Subscriptions)

      * 6.3.3. 슬라이싱(Slicings)

      * 6.3.4. 호출

    * 6.4. 어웨이트 표현식

    * 6.5. 거듭제곱 연산자

    * 6.6. 일 항 산술과 비트 연산

    * 6.7. 이항 산술 연산

    * 6.8. 시프트 연산

    * 6.9. 이항 비트 연산

    * 6.10. 비교

      * 6.10.1. 값 비교

      * 6.10.2. 멤버십 검사 연산

      * 6.10.3. 아이덴티티 비교

    * 6.11. 논리 연산(Boolean operations)

    * 6.12. 조건 표현식(Conditional expressions)

    * 6.13. 람다(Lambdas)

    * 6.14. 표현식 목록(Expression lists)

    * 6.15. 값을 구하는 순서

    * 6.16. 연산자 우선순위

  * 7. 단순문(Simple statements)

    * 7.1. 표현식 문

    * 7.2. 대입문

      * 7.2.1. 증분 대입문(Augmented assignment statements)

      * 7.2.2. 어노테이트된 대입문(Annotated assignment statements)

    * 7.3. "assert" 문

    * 7.4. "pass" 문

    * 7.5. "del" 문

    * 7.6. "return" 문

    * 7.7. "yield" 문

    * 7.8. "raise" 문

    * 7.9. "break" 문

    * 7.10. "continue" 문

    * 7.11. 임포트("import") 문

      * 7.11.1. 퓨처 문

    * 7.12. "global" 문

    * 7.13. "nonlocal" 문

  * 8. 복합문(Compound statements)

    * 8.1. "if" 문

    * 8.2. "while" 문

    * 8.3. "for" 문

    * 8.4. "try" 문

    * 8.5. "with" 문

    * 8.6. 함수 정의

    * 8.7. 클래스 정의

    * 8.8. 코루틴

      * 8.8.1. 코루틴 함수 정의

      * 8.8.2. "async for" 문

      * 8.8.3. "async with" 문

  * 9. 최상위 요소들

    * 9.1. 완전한 파이썬 프로그램

    * 9.2. 파일 입력

    * 9.3. 대화형 입력

    * 9.4. 표현식 입력

  * 10. 전체 문법 규격

* 파이썬 표준 라이브러리

  * 소개

    * 가용성에 대한 참고 사항

  * 내장 함수

  * 내장 상수

    * "site" 모듈에 의해 추가된 상수들

  * 내장형

    * 논리값 검사

    * 논리 연산 --- "and", "or", "not"

    * 비교

    * 숫자 형 --- "int", "float", "complex"

      * 정수 형에 대한 비트 연산

      * 정수 형에 대한 추가 메서드

      * 실수에 대한 추가 메서드

      * 숫자 형의 해싱

    * 이터레이터 형

      * 제너레이터 형

    * 시퀀스 형 --- "list", "tuple", "range"

      * 공통 시퀀스 연산

      * 불변 시퀀스 형

      * 가변 시퀀스 형

      * 리스트

      * 튜플

      * 범위

    * 텍스트 시퀀스 형 --- "str"

      * 문자열 메서드

      * "printf" 스타일 문자열 포매팅

    * 바이너리 시퀀스 형 --- "bytes", "bytearray", "memoryview"

      * 바이트열 객체

      * 바이트 배열 객체

      * 바이트열 과 바이트 배열 연산

      * "printf" 스타일 바이너리 포매팅

      * 메모리 뷰

    * 집합 형 --- "set", "frozenset"

    * 매핑 형 --- "dict"

      * 딕셔너리 뷰 객체

    * 컨텍스트 관리자 형

    * 기타 내장형

      * 모듈

      * 클래스와 클래스 인스턴스

      * 함수

      * 메서드

      * 코드 객체

      * 형 객체

      * 널 객체

      * Ellipsis 객체

      * NotImplemented 객체

      * 논리값

      * 내부 객체

    * 특수 어트리뷰트

    * Integer string conversion length limitation

      * Affected APIs

      * Configuring the limit

      * Recommended configuration

  * 내장 예외

    * 베이스 클래스

    * 구체적인 예외

      * OS 예외

    * 경고

    * 예외 계층 구조

  * 텍스트 처리 서비스

    * "string" --- 일반적인 문자열 연산

      * 문자열 상수

      * 사용자 지정 문자열 포매팅

      * 포맷 문자열 문법

        * 포맷 명세 미니 언어

        * 포맷 예제

      * 템플릿 문자열

      * 도움 함수

    * "re" --- Regular expression operations

      * Regular Expression Syntax

      * Module Contents

      * Regular Expression Objects

      * Match Objects

      * Regular Expression Examples

        * Checking for a Pair

        * Simulating scanf()

        * search() vs. match()

        * Making a Phonebook

        * Text Munging

        * Finding all Adverbs

        * Finding all Adverbs and their Positions

        * Raw String Notation

        * Writing a Tokenizer

    * "difflib" --- 델타 계산을 위한 도우미

      * SequenceMatcher 객체

      * SequenceMatcher 예제

      * Differ 객체

      * Differ 예제

      * difflib의 명령 줄 인터페이스

    * "textwrap" --- 텍스트 래핑과 채우기

    * "unicodedata" --- 유니코드 데이터베이스

    * "stringprep" --- 인터넷 문자열 준비

    * "readline" --- GNU readline 인터페이스

      * 초기화 파일

      * 줄 버퍼

      * 히스토리 파일

      * 히스토리 목록

      * 시동 훅

      * 완성

      * 예제

    * "rlcompleter" --- GNU readline을 위한 완성 함수

      * Completer 객체

  * 바이너리 데이터 서비스

    * "struct" --- Interpret bytes as packed binary data

      * Functions and Exceptions

      * Format Strings

        * Byte Order, Size, and Alignment

        * Format Characters

        * Examples

      * Classes

    * "codecs" --- Codec registry and base classes

      * Codec Base Classes

        * Error Handlers

        * Stateless Encoding and Decoding

        * Incremental Encoding and Decoding

          * IncrementalEncoder Objects

          * IncrementalDecoder Objects

        * Stream Encoding and Decoding

          * StreamWriter Objects

          * StreamReader Objects

          * StreamReaderWriter Objects

          * StreamRecoder Objects

      * Encodings and Unicode

      * Standard Encodings

      * Python Specific Encodings

        * Text Encodings

        * Binary Transforms

        * Text Transforms

      * "encodings.idna" --- Internationalized Domain Names in
        Applications

      * "encodings.mbcs" --- Windows ANSI codepage

      * "encodings.utf_8_sig" --- UTF-8 codec with BOM signature

  * 데이터형

    * "datetime" --- 기본 날짜와 시간 형

      * 사용 가능한 형

      * "timedelta" 객체

      * "date" 객체

      * "datetime" 객체

      * "time" 객체

      * "tzinfo" 객체

      * "timezone" 객체

      * "strftime()"과 "strptime()" 동작

    * "calendar" --- General calendar-related functions

    * "collections" --- Container datatypes

      * "ChainMap" objects

        * "ChainMap" Examples and Recipes

      * "Counter" objects

      * "deque" objects

        * "deque" Recipes

      * "defaultdict" objects

        * "defaultdict" Examples

      * "namedtuple()" Factory Function for Tuples with Named Fields

      * "OrderedDict" objects

        * "OrderedDict" Examples and Recipes

      * "UserDict" objects

      * "UserList" objects

      * "UserString" objects

    * "collections.abc" --- 컨테이너의 추상 베이스 클래스

      * Collections 추상 베이스 클래스

    * "heapq" --- Heap queue algorithm

      * Basic Examples

      * Priority Queue Implementation Notes

      * Theory

    * "bisect" --- 배열 이진 분할 알고리즘

      * 정렬된 리스트 검색하기

      * 다른 예제

    * "array" --- 효율적인 숫자 배열

    * "weakref" --- Weak references

      * Weak Reference Objects

      * Example

      * Finalizer Objects

      * Comparing finalizers with "__del__()" methods

    * "types" --- 동적 형 생성과 내장형 이름

      * 동적 형 생성

      * 표준 인터프리터 형

      * 추가 유틸리티 클래스와 함수

      * 코루틴 유틸리티 함수

    * "copy" --- 얕은 복사와 깊은 복사 연산

    * "pprint" --- 예쁜 데이터 인쇄기

      * PrettyPrinter 객체

      * 예제

    * "reprlib" --- 대안 "repr()" 구현

      * Repr 객체

      * Repr 객체 서브클래싱

    * "enum" --- Support for enumerations

      * Module Contents

      * Creating an Enum

      * Programmatic access to enumeration members and their
        attributes

      * Duplicating enum members and values

      * Ensuring unique enumeration values

      * Using automatic values

      * Iteration

      * Comparisons

      * Allowed members and attributes of enumerations

      * Restricted Enum subclassing

      * Pickling

      * Functional API

      * Derived Enumerations

        * IntEnum

        * IntFlag

        * Flag

        * Others

      * Interesting examples

        * Omitting values

          * Using "auto"

          * Using "object"

          * Using a descriptive string

          * Using a custom "__new__()"

        * OrderedEnum

        * DuplicateFreeEnum

        * Planet

        * TimePeriod

      * How are Enums different?

        * Enum Classes

        * Enum Members (aka instances)

        * Finer Points

          * Supported "__dunder__" names

          * Supported "_sunder_" names

          * "Enum" member type

          * Boolean value of "Enum" classes and members

          * "Enum" classes with methods

          * Combining members of "Flag"

  * 숫자와 수학 모듈

    * "numbers" --- 숫자 추상 베이스 클래스

      * 숫자 계층

      * 형 구현을 위한 주의 사항

        * 더 많은 숫자 추상 베이스 클래스(ABC) 추가

        * 산술 연산 구현

    * "math" --- Mathematical functions

      * Number-theoretic and representation functions

      * Power and logarithmic functions

      * Trigonometric functions

      * Angular conversion

      * Hyperbolic functions

      * Special functions

      * Constants

    * "cmath" --- 복소수를 위한 수학 함수

      * 극좌표 변환

      * 거듭제곱과 로그 함수

      * 삼각 함수

      * 쌍곡선(hyperbolic) 함수

      * 분류 함수

      * 상수

    * "decimal" --- 십진 고정 소수점 및 부동 소수점 산술

      * 빠른 시작 자습서

      * Decimal 객체

        * 논리적 피연산자

      * Context 객체

      * 상수

      * 자리 올림 모드

      * 신호

      * 부동 소수점 노트

        * 증가시킨 정밀도로 자리 올림 오차 줄이기

        * 특수 값

      * 스레드로 작업하기

      * 조리법

      * Decimal FAQ

    * "fractions" --- 유리수

    * "random" --- Generate pseudo-random numbers

      * Bookkeeping functions

      * Functions for integers

      * Functions for sequences

      * Real-valued distributions

      * Alternative Generator

      * Notes on Reproducibility

      * Examples and Recipes

    * "statistics" --- Mathematical statistics functions

      * Averages and measures of central location

      * Measures of spread

      * Function details

      * Exceptions

  * 함수형 프로그래밍 모듈

    * "itertools" --- Functions creating iterators for efficient
      looping

      * Itertool functions

      * Itertools Recipes

    * "functools" --- Higher-order functions and operations on
      callable objects

      * "partial" Objects

    * "operator" --- 함수로서의 표준 연산자

      * 연산자를 함수에 매핑하기

      * 제자리 연산자

  * 파일과 디렉터리 액세스

    * "pathlib" --- Object-oriented filesystem paths

      * Basic use

      * Pure paths

        * General properties

        * Operators

        * Accessing individual parts

        * Methods and properties

      * Concrete paths

        * Methods

      * Correspondence to tools in the "os" module

    * "os.path" --- Common pathname manipulations

    * "fileinput" --- Iterate over lines from multiple input streams

    * "stat" --- "stat()" 결과 해석하기

    * "filecmp" --- 파일과 디렉터리 비교

      * "dircmp" 클래스

    * "tempfile" --- Generate temporary files and directories

      * Examples

      * Deprecated functions and variables

    * "glob" --- 유닉스 스타일 경로명 패턴 확장

    * "fnmatch" --- 유닉스 파일명 패턴 일치

    * "linecache" --- 텍스트 줄에 대한 무작위 액세스

    * "shutil" --- High-level file operations

      * Directory and files operations

        * copytree example

        * rmtree example

      * Archiving operations

        * Archiving example

        * Archiving example with *base_dir*

      * Querying the size of the output terminal

    * "macpath" --- Mac OS 9 path manipulation functions

  * 데이터 지속성

    * "pickle" --- 파이썬 객체 직렬화

      * 다른 파이썬 모듈과의 관계

        * "marshal" 과의 비교

        * "json" 과의 비교

      * 데이터 스트림 형식

      * 모듈 인터페이스

      * 어떤 것이 피클 되고 역 피클 될 수 있을까요?

      * 클래스 인스턴스 피클링

        * 외부 객체의 지속성

        * 디스패치 테이블

        * 상태 저장 객체 처리

      * 전역 제한하기

      * 성능

      * 예제

    * "copyreg" --- "pickle" 지원 함수 등록

      * 예제

    * "shelve" --- 파이썬 객체 지속성

      * 제약 사항

      * 예제

    * "marshal" --- 내부 파이썬 객체 직렬화

    * "dbm" --- 유닉스 "데이터베이스" 인터페이스

      * "dbm.gnu" --- GNU의 dbm 재해석

      * "dbm.ndbm" --- ndbm 기반 인터페이스

      * "dbm.dumb" --- 이식성 있는 DBM 구현

    * "sqlite3" --- SQLite 데이터베이스용 DB-API 2.0 인터페이스

      * 모듈 함수와 상수

      * Connection 객체

      * Cursor 객체

      * Row 객체

      * 예외

      * SQLite 와 파이썬 형

        * 소개

        * 어댑터를 사용하여 SQLite 데이터베이스에 추가 파이썬 형을 저
          장하기

          * 객체가 스스로 어댑트하도록 하기

          * 어댑터 콜러블 등록하기

        * SQLite 값을 사용자 정의 파이썬 형으로 변환하기

        * 기본 어댑터와 변환기

      * 트랜잭션 제어

      * 효율적으로 "sqlite3" 사용하기

        * 바로 가기 메서드 사용하기

        * 인덱스 대신 이름으로 열 액세스하기

        * 컨텍스트 관리자로 연결 사용하기

      * 일반적인 문제

        * 다중 스레드

  * 데이터 압축 및 보관

    * "zlib" --- Compression compatible with **gzip**

    * "gzip" --- **gzip** 파일 지원

      * 사용 예

    * "bz2" --- **bzip2** 압축 지원

      * 파일 압축(해제)

      * 증분 압축(해제)

      * 일괄 압축(해제)

      * 사용 예

    * "lzma" --- Compression using the LZMA algorithm

      * Reading and writing compressed files

      * Compressing and decompressing data in memory

      * Miscellaneous

      * Specifying custom filter chains

      * Examples

    * "zipfile" --- Work with ZIP archives

      * ZipFile Objects

      * PyZipFile Objects

      * ZipInfo Objects

      * Command-Line Interface

        * Command-line options

    * "tarfile" --- Read and write tar archive files

      * TarFile Objects

      * TarInfo Objects

      * Command-Line Interface

        * Command-line options

      * Examples

      * Supported tar formats

      * Unicode issues

  * 파일 형식

    * "csv" --- CSV 파일 읽기와 쓰기

      * 모듈 내용

      * 방언과 포매팅 파라미터

      * 판독기 객체

      * 기록기 객체

      * 예제

    * "configparser" --- Configuration file parser

      * Quick Start

      * Supported Datatypes

      * Fallback Values

      * Supported INI File Structure

      * Interpolation of values

      * Mapping Protocol Access

      * Customizing Parser Behaviour

      * Legacy API Examples

      * ConfigParser Objects

      * RawConfigParser Objects

      * Exceptions

    * "netrc" --- netrc 파일 처리

      * netrc 객체

    * "xdrlib" --- XDR 데이터 인코딩과 디코딩

      * Packer 객체

      * Unpacker 객체

      * 예외

    * "plistlib" --- 맥 OS X ".plist" 파일 생성과 구문 분석

      * 예제

  * 암호화 서비스

    * "hashlib" --- Secure hashes and message digests

      * Hash algorithms

      * SHAKE variable length digests

      * Key derivation

      * BLAKE2

        * Creating hash objects

        * Constants

        * Examples

          * Simple hashing

          * Using different digest sizes

          * Keyed hashing

          * Randomized hashing

          * Personalization

          * Tree mode

        * Credits

    * "hmac" --- 메시지 인증을 위한 키 해싱

    * "secrets" --- 비밀 관리를 위한 안전한 난수 생성

      * 난수

      * 토큰 생성

        * 토큰은 몇 바이트를 사용해야 합니까?

      * 기타 함수

      * 조리법과 모범 사례

  * 일반 운영 체제 서비스

    * "os" --- 기타 운영 체제 인터페이스

      * 파일명, 명령 줄 인자 및 환경 변수

      * 프로세스 매개 변수

      * 파일 객체 생성

      * 파일 기술자 연산

        * 터미널의 크기 조회하기

        * 파일 기술자의 상속

      * 파일과 디렉터리

        * 리눅스 확장 어트리뷰트

      * 프로세스 관리

      * 스케줄러에 대한 인터페이스

      * 기타 시스템 정보

      * 난수

    * "io" --- Core tools for working with streams

      * Overview

        * Text I/O

        * Binary I/O

        * Raw I/O

      * High-level Module Interface

        * In-memory streams

      * Class hierarchy

        * I/O Base Classes

        * Raw File I/O

        * Buffered Streams

        * Text I/O

      * Performance

        * Binary I/O

        * Text I/O

        * Multi-threading

        * Reentrancy

    * "time" --- Time access and conversions

      * Functions

      * Clock ID Constants

      * Timezone Constants

    * "argparse" --- 명령행 옵션, 인자와 부속 명령을 위한 파서

      * 예

        * 파서 만들기

        * 인자 추가하기

        * 인자 파싱하기

      * ArgumentParser 객체

        * prog

        * usage

        * description

        * epilog

        * parents

        * formatter_class

        * prefix_chars

        * fromfile_prefix_chars

        * argument_default

        * allow_abbrev

        * conflict_handler

        * add_help

      * add_argument() 메서드

        * name or flags

        * action

        * nargs

        * const

        * default

        * type

        * choices

        * required

        * help

        * metavar

        * dest

        * Action 클래스

      * parse_args() 메서드

        * 옵션값 문법

        * 잘못된 인자

        * "-" 를 포함하는 인자들

        * 인자 약어 (접두사 일치)

        * "sys.argv" 너머

        * Namespace 객체

      * 기타 유틸리티

        * 부속 명령

        * FileType 객체

        * 인자 그룹

        * 상호 배제

        * 파서 기본값

        * 도움말 인쇄

        * 부분 파싱

        * 파일 파싱 사용자 정의

        * 종료 메서드

        * 혼합 파싱

      * optparse 코드 업그레이드

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

    * "logging" --- 파이썬 로깅 시설

      * Logger 객체

      * 로깅 수준

      * Handler 객체

      * Formatter 객체

      * Filter 객체

      * LogRecord 객체

      * LogRecord 어트리뷰트

      * LoggerAdapter 객체

      * 스레드 안전성

      * 모듈 수준 함수

      * 모듈 수준 어트리뷰트

      * warnings 모듈과의 통합

    * "logging.config" --- 로깅 구성

      * 구성 함수

      * 구성 딕셔너리 스키마

        * 딕셔너리 스키마 세부사항

        * 증분 구성

        * 객체 연결

        * 사용자 정의 객체

        * 외부 객체에 대한 액세스

        * 내부 객체에 대한 액세스

        * 임포트 결정과 사용자 정의 임포터

      * 구성 파일 형식

    * "logging.handlers" --- 로깅 처리기

      * StreamHandler

      * FileHandler

      * NullHandler

      * WatchedFileHandler

      * BaseRotatingHandler

      * RotatingFileHandler

      * TimedRotatingFileHandler

      * SocketHandler

      * DatagramHandler

      * SysLogHandler

      * NTEventLogHandler

      * SMTPHandler

      * MemoryHandler

      * HTTPHandler

      * QueueHandler

      * QueueListener

    * "getpass" --- 이식성 있는 암호 입력

    * "curses" --- Terminal handling for character-cell displays

      * Functions

      * Window Objects

      * Constants

    * "curses.textpad" --- Text input widget for curses programs

      * Textbox objects

    * "curses.ascii" --- Utilities for ASCII characters

    * "curses.panel" --- curses 용 패널 스택 확장

      * 함수

      * Panel 객체

    * "platform" --- 하부 플랫폼의 식별 데이터에 대한 액세스

      * 크로스 플랫폼

      * 자바 플랫폼

      * 윈도우 플랫폼

        * Win95/98 specific

      * Mac OS 플랫폼

      * 유닉스 플랫폼

    * "errno" --- 표준 errno 시스템 기호

    * "ctypes" --- 파이썬용 외부 함수 라이브러리

      * ctypes 자습서

        * 동적 링크 라이브러리 로드하기

        * 로드된 dll에서 함수에 액세스하기

        * 함수 호출하기

        * 기본 데이터형

        * 함수 호출하기, 계속

        * 사용자 정의 데이터형을 사용하여 함수 호출하기

        * 필수 인자 형 (함수 프로토타입) 지정하기

        * 반환형

        * 포인터 전달하기 (또는: 참조로 매개 변수 전달하기)

        * 구조체와 공용체

        * 구조체/공용체 정렬과 바이트 순서

        * 구조체와 공용체의 비트 필드

        * 배열

        * 포인터

        * 형 변환

        * 불완전한 형

        * 콜백 함수

        * dll에서 내 보낸 값을 액세스하기

        * 의외의 것들

        * 가변 크기 데이터형

      * ctypes 레퍼런스

        * 공유 라이브러리 찾기

        * 공유 라이브러리 로드하기

        * 외부 함수

        * 함수 프로토타입

        * 유틸리티 함수

        * 데이터형

        * 기본 데이터형

        * 구조화된 데이터형

        * 배열과 포인터

  * 동시 실행

    * "threading" --- Thread-based parallelism

      * Thread-Local Data

      * Thread Objects

      * Lock Objects

      * RLock Objects

      * Condition Objects

      * Semaphore Objects

        * "Semaphore" Example

      * Event Objects

      * Timer Objects

      * Barrier Objects

      * Using locks, conditions, and semaphores in the "with"
        statement

    * "multiprocessing" --- 프로세스 기반 병렬 처리

      * 소개

        * "Process" 클래스

        * 컨텍스트 및 시작 방법

        * 프로세스 간 객체 교환

        * 프로세스 간 동기화

        * 프로세스 간 상태 공유

        * 작업자 풀 사용

      * 레퍼런스

        * "Process"와 예외

        * 파이프와 큐

        * 잡동사니

        * Connection 객체

        * 동기화 프리미티브

        * 공유 "ctypes" 객체

          * "multiprocessing.sharedctypes" 모듈

        * 관리자

          * 사용자 정의 관리자

          * 원격 관리자 사용하기

        * 프락시 객체

          * 정리

        * 프로세스 풀

        * 리스너와 클라이언트

          * 주소 형식

        * 인증 키

        * 로깅

        * "multiprocessing.dummy" 모듈

      * 프로그래밍 지침

        * 모든 시작 방법

        * *spawn* 과 *forkserver* 시작 방법

      * 예제

    * "concurrent" 패키지

    * "concurrent.futures" --- 병렬 작업 실행하기

      * Executor 객체

      * ThreadPoolExecutor

        * ThreadPoolExecutor 예제

      * ProcessPoolExecutor

        * ProcessPoolExecutor 예제

      * Future 객체

      * 모듈 함수

      * 예외 클래스

    * "subprocess" --- Subprocess management

      * Using the "subprocess" Module

        * Frequently Used Arguments

        * Popen Constructor

        * Exceptions

      * Security Considerations

      * Popen Objects

      * Windows Popen Helpers

        * Windows Constants

      * Older high-level API

      * Replacing Older Functions with the "subprocess" Module

        * Replacing /bin/sh shell backquote

        * Replacing shell pipeline

        * Replacing "os.system()"

        * Replacing the "os.spawn" family

        * Replacing "os.popen()", "os.popen2()", "os.popen3()"

        * Replacing functions from the "popen2" module

      * Legacy Shell Invocation Functions

      * Notes

        * Converting an argument sequence to a string on Windows

    * "sched" --- 이벤트 스케줄러

      * 스케줄러 객체

    * "queue" --- 동기화된 큐 클래스

      * 큐 객체

      * SimpleQueue 객체

    * "_thread" --- 저수준 스레드 API

    * "_dummy_thread" --- Drop-in replacement for the "_thread" module

    * "dummy_threading" --- Drop-in replacement for the "threading"
      module

  * "contextvars" --- 컨텍스트 변수

    * 컨텍스트 변수

    * 수동 컨텍스트 관리

    * asyncio 지원

  * 네트워킹과 프로세스 간 통신

    * "asyncio" --- 비동기 I/O

      * 코루틴과 태스크

        * 코루틴

        * 어웨이터블

        * asyncio 프로그램 실행하기

        * 태스크 만들기

        * 잠자기

        * 동시에 태스크 실행하기

        * 취소로부터 보호하기

        * 시간제한

        * 대기 프리미티브

        * 다른 스레드에서 예약하기

        * 인트로스팩션

        * Task 객체

        * 제너레이터 기반 코루틴

      * 스트림

        * StreamReader

        * StreamWriter

        * 예제

          * 스트림을 사용하는 TCP 메아리 클라이언트

          * 스트림을 사용하는 TCP 메아리 서버

          * HTTP 헤더 가져오기

          * 스트림을 사용하여 데이터를 기다리는 열린 소켓 등록

      * 동기화 프리미티브

        * Lock

        * Event

        * Condition

        * Semaphore

        * BoundedSemaphore

      * 서브 프로세스

        * 서브 프로세스 만들기

        * 상수

        * 서브 프로세스와 상호 작용하기

          * 서브 프로세스와 스레드

          * 예제

      * 큐

        * Queue

        * 우선순위 큐

        * LIFO 큐

        * 예외

        * 예제

      * 예외

      * 이벤트 루프

        * 이벤트 루프 메서드

          * 루프 실행 및 중지

          * 콜백 예약하기

          * 지연된 콜백 예약

          * 퓨처와 태스크 만들기

          * 네트워크 연결 열기

          * 네트워크 서버 만들기

          * 파일 전송

          * TLS 업그레이드

          * 파일 기술자 관찰하기

          * 소켓 객체로 직접 작업하기

          * DNS

          * 파이프로 작업하기

          * 유닉스 시그널

          * 스레드 또는 프로세스 풀에서 코드를 실행하기

          * 에러 처리 API

          * 디버그 모드 활성화

          * 자식 프로세스 실행하기

        * 콜백 핸들

        * 서버 객체

        * 이벤트 루프 구현

        * 예제

          * call_soon()을 사용하는 Hello World

          * call_later()로 현재 날짜를 표시합니다.

          * 파일 기술자에서 읽기 이벤트를 관찰하기

          * SIGINT 및 SIGTERM에 대한 시그널 처리기 설정

      * 퓨처

        * 퓨처 함수

        * Future 객체

      * 트랜스포트와 프로토콜

        * 트랜스포트

          * 트랜스포트 계층 구조

          * 베이스 트랜스포트

          * 읽기 전용 트랜스포트

          * 쓰기 전용 트랜스포트

          * 데이터 그램 트랜스포트

          * 서브 프로세스 트랜스포트

        * 프로토콜

          * 베이스 프로토콜

          * 베이스 프로토콜

          * 스트리밍 프로토콜

          * 버퍼 된 스트리밍 프로토콜

          * 데이터 그램 프로토콜

          * 서브 프로세스 프로토콜

        * 예제

          * TCP 메아리 서버

          * TCP 메아리 클라이언트

          * UDP 메아리 서버

          * UDP 메아리 클라이언트

          * 기존 소켓 연결하기

          * loop.subprocess_exec() 와 SubprocessProtocol

      * 정책

        * 정책을 얻고 설정하기

        * 정책 객체

        * 프로세스 감시자

        * 사용자 정의 정책

      * 플랫폼 지원

        * 모든 플랫폼

        * 윈도우

          * 윈도우에서의 서브 프로세스 지원

        * macOS

      * 고수준 API 색인

        * 태스크

        * 큐

        * 서브 프로세스

        * 스트림

        * 동기화

        * 예외

      * 저수준 API 색인

        * 이벤트 루프 얻기

        * 이벤트 루프 메서드

        * 트랜스포트

        * 프로토콜

        * 이벤트 루프 정책

      * asyncio로 개발하기

        * 디버그 모드

        * 동시성과 다중 스레드

        * 블로킹 코드 실행하기

        * 로깅

        * await 하지 않은 코루틴 감지

        * 전달되지 않은 예외 감지

    * "socket" --- 저수준 네트워킹 인터페이스

      * 소켓 패밀리

      * 모듈 내용

        * 예외

        * 상수

        * 함수

          * 소켓 만들기

          * 기타 함수

      * 소켓 객체

      * 소켓 시간제한에 대한 참고 사항

        * 시간제한과 "connect" 메서드

        * 시간제한과 "accept" 메서드

      * 예제

    * "ssl" --- 소켓 객체용 TLS/SSL 래퍼

      * 함수, 상수 및 예외

        * 소켓 생성

        * 컨텍스트 생성

        * 예외

        * 난수 생성

        * 인증서 처리

        * 상수

      * SSL 소켓

      * SSL 컨텍스트

      * 인증서

        * 인증서 체인

        * CA 인증서

        * 결합한 키와 인증서

        * 자체 서명 인증서

      * 예제

        * SSL 지원 검사하기

        * 클라이언트 측 연산

        * 서버 측 연산

      * 비 블로킹 소켓에 대한 참고 사항

      * 메모리 BIO 지원

      * SSL 세션

      * 보안 고려 사항

        * 가장 좋은 기본값

        * 수동 설정

          * 인증서 확인

          * 프로토콜 버전

          * 사이퍼 선택

        * 다중 프로세싱

      * TLS 1.3

      * LibreSSL 지원

    * "select" --- Waiting for I/O completion

      * "/dev/poll" Polling Objects

      * Edge and Level Trigger Polling (epoll) Objects

      * Polling Objects

      * Kqueue Objects

      * Kevent Objects

    * "selectors" --- 고수준 I/O 다중화

      * 소개

      * 클래스

      * 예제

    * "asyncore" --- Asynchronous socket handler

      * asyncore Example basic HTTP client

      * asyncore Example basic echo server

    * "asynchat" --- Asynchronous socket command/response handler

      * asynchat Example

    * "signal" --- Set handlers for asynchronous events

      * General rules

        * Execution of Python signal handlers

        * Signals and threads

      * Module contents

      * Example

      * Note on SIGPIPE

    * "mmap" --- 메모리 맵 파일 지원

  * 인터넷 데이터 처리

    * "email" --- 전자 메일과 MIME 처리 패키지

      * "email.message": Representing an email message

      * "email.parser": Parsing email messages

        * FeedParser API

        * Parser API

        * Additional notes

      * "email.generator": Generating MIME documents

      * "email.policy": Policy Objects

      * "email.errors": 예외와 결함 클래스

      * "email.headerregistry": Custom Header Objects

      * "email.contentmanager": MIME 콘텐츠 관리

        * 콘텐츠 관리자 인스턴스

      * "email": 예제

      * "email.message.Message": Representing an email message using
        the "compat32" API

      * "email.mime": Creating email and MIME objects from scratch

      * "email.header": Internationalized headers

      * "email.charset": Representing character sets

      * "email.encoders": Encoders

      * "email.utils": 기타 유틸리티

      * "email.iterators": 이터레이터

    * "json" --- JSON 인코더와 디코더

      * 기본 사용법

      * 인코더와 디코더

      * 예외

      * 표준 준수와 상호 운용성

        * 문자 인코딩

        * 무한대와 NaN 숫자 값

        * 오브젝트 내에서 반복된 이름

        * 오브젝트나 배열이 아닌 최상윗값

        * 구현 제약 사항

      * 명령 줄 인터페이스

        * 명령 줄 옵션

    * "mailcap" --- Mailcap 파일 처리

    * "mailbox" --- Manipulate mailboxes in various formats

      * "Mailbox" objects

        * "Maildir"

        * "mbox"

        * "MH"

        * "Babyl"

        * "MMDF"

      * "Message" objects

        * "MaildirMessage"

        * "mboxMessage"

        * "MHMessage"

        * "BabylMessage"

        * "MMDFMessage"

      * Exceptions

      * Examples

    * "mimetypes" --- 파일명을 MIME 유형에 매핑

      * MimeTypes 객체

    * "base64" --- Base16, Base32, Base64, Base85 데이터 인코딩

    * "binhex" --- binhex4 파일 인코딩과 디코딩

      * 노트

    * "binascii" --- 바이너리와 ASCII 간의 변환

    * "quopri" --- MIME quoted-printable 데이터 인코딩과 디코딩

    * "uu" --- uuencode 파일 인코딩과 디코딩

  * 구조화된 마크업 처리 도구

    * "html" --- 하이퍼텍스트 마크업 언어 지원

    * "html.parser" --- 간단한 HTML과 XHTML 구문 분석기

      * HTML 구문 분석기 응용 프로그램 예제

      * "HTMLParser" 메서드

      * 예제

    * "html.entities" --- HTML 일반 엔티티의 정의

    * XML 처리 모듈

      * XML 취약점

      * "defusedxml"와 "defusedexpat" 패키지

    * "xml.etree.ElementTree" --- The ElementTree XML API

      * Tutorial

        * XML tree and elements

        * Parsing XML

        * Pull API for non-blocking parsing

        * Finding interesting elements

        * Modifying an XML File

        * Building XML documents

        * Parsing XML with Namespaces

        * Additional resources

      * XPath support

        * Example

        * Supported XPath syntax

      * Reference

        * Functions

      * XInclude support

        * Example

      * Reference

        * Functions

        * Element Objects

        * ElementTree Objects

        * QName Objects

        * TreeBuilder Objects

        * XMLParser Objects

        * XMLPullParser Objects

        * Exceptions

    * "xml.dom" --- 문서 객체 모델 API

      * 모듈 내용

      * DOM의 객체

        * DOMImplementation 객체

        * Node 객체

        * NodeList 객체

        * DocumentType 객체

        * Document 객체

        * Element 객체

        * Attr 객체

        * NamedNodeMap 객체

        * Comment 객체

        * Text와 CDATASection 객체

        * ProcessingInstruction 객체

        * 예외

      * 규격 준수

        * 형 매핑

        * 접근자 메서드

    * "xml.dom.minidom" --- 최소 DOM 구현

      * DOM 객체

      * DOM 예제

      * minidom과 DOM 표준

    * "xml.dom.pulldom" --- 부분 DOM 트리 구축 지원

      * DOMEventStream 객체

    * "xml.sax" --- SAX2 구문 분석기 지원

      * SAXException 객체

    * "xml.sax.handler" --- Base classes for SAX handlers

      * ContentHandler Objects

      * DTDHandler Objects

      * EntityResolver Objects

      * ErrorHandler Objects

    * "xml.sax.saxutils" --- SAX 유틸리티

    * "xml.sax.xmlreader" --- XML 구문 분석기 인터페이스

      * XMLReader 객체

      * IncrementalParser 객체

      * Locator 객체

      * InputSource 객체

      * "Attributes" 인터페이스

      * "AttributesNS" 인터페이스

    * "xml.parsers.expat" --- Fast XML parsing using Expat

      * XMLParser Objects

      * ExpatError Exceptions

      * Example

      * Content Model Descriptions

      * Expat error constants

  * 인터넷 프로토콜과 지원

    * "webbrowser" --- 편리한 웹 브라우저 제어기

      * 브라우저 제어기 객체

    * "cgi" --- Common Gateway Interface support

      * Introduction

      * Using the cgi module

      * Higher Level Interface

      * Functions

      * Caring about security

      * Installing your CGI script on a Unix system

      * Testing your CGI script

      * Debugging CGI scripts

      * Common problems and solutions

    * "cgitb" --- CGI 스크립트를 위한 트레이스백 관리자

    * "wsgiref" --- WSGI 유틸리티와 참조 구현

      * "wsgiref.util" -- WSGI 환경 유틸리티

      * "wsgiref.headers" -- WSGI 응답 헤더 도구

      * "wsgiref.simple_server" -- 간단한 WSGI HTTP 서버

      * "wsgiref.validate" --- WSGI 적합성 검사기

      * "wsgiref.handlers" -- 서버/게이트웨이 베이스 클래스

      * 예제

    * "urllib" --- URL 처리 모듈

    * "urllib.request" --- Extensible library for opening URLs

      * Request Objects

      * OpenerDirector Objects

      * BaseHandler Objects

      * HTTPRedirectHandler Objects

      * HTTPCookieProcessor Objects

      * ProxyHandler Objects

      * HTTPPasswordMgr Objects

      * HTTPPasswordMgrWithPriorAuth Objects

      * AbstractBasicAuthHandler Objects

      * HTTPBasicAuthHandler Objects

      * ProxyBasicAuthHandler Objects

      * AbstractDigestAuthHandler Objects

      * HTTPDigestAuthHandler Objects

      * ProxyDigestAuthHandler Objects

      * HTTPHandler Objects

      * HTTPSHandler Objects

      * FileHandler Objects

      * DataHandler Objects

      * FTPHandler Objects

      * CacheFTPHandler Objects

      * UnknownHandler Objects

      * HTTPErrorProcessor Objects

      * Examples

      * Legacy interface

      * "urllib.request" Restrictions

    * "urllib.response" --- Response classes used by urllib

    * "urllib.parse" --- Parse URLs into components

      * URL Parsing

      * Parsing ASCII Encoded Bytes

      * Structured Parse Results

      * URL Quoting

    * "urllib.error" --- urllib.request에 의해 발생하는 예외 클래스

    * "urllib.robotparser" --- robots.txt 구문 분석기

    * "http" --- HTTP 모듈

      * HTTP 상태 코드

    * "http.client" --- HTTP protocol client

      * HTTPConnection Objects

      * HTTPResponse Objects

      * Examples

      * HTTPMessage Objects

    * "ftplib" --- FTP protocol client

      * FTP Objects

      * FTP_TLS Objects

    * "poplib" --- POP3 프로토콜 클라이언트

      * POP3 객체

      * POP3 예제

    * "imaplib" --- IMAP4 protocol client

      * IMAP4 Objects

      * IMAP4 Example

    * "nntplib" --- NNTP protocol client

      * NNTP Objects

        * Attributes

        * Methods

      * Utility functions

    * "smtplib" --- SMTP protocol client

      * SMTP Objects

      * SMTP Example

    * "smtpd" --- SMTP Server

      * SMTPServer Objects

      * DebuggingServer Objects

      * PureProxy Objects

      * MailmanProxy Objects

      * SMTPChannel Objects

    * "telnetlib" --- 텔넷 클라이언트

      * 텔넷 객체

      * 텔넷 예제

    * "uuid" --- **RFC 4122** 에 따른 UUID 객체

      * 예제

    * "socketserver" --- A framework for network servers

      * Server Creation Notes

      * Server Objects

      * Request Handler Objects

      * Examples

        * "socketserver.TCPServer" Example

        * "socketserver.UDPServer" Example

        * Asynchronous Mixins

    * "http.server" --- HTTP servers

      * Security Considerations

    * "http.cookies" --- HTTP 상태 관리

      * 쿠키 객체

      * Morsel 객체

      * 예제

    * "http.cookiejar" --- Cookie handling for HTTP clients

      * CookieJar and FileCookieJar Objects

      * FileCookieJar subclasses and co-operation with web browsers

      * CookiePolicy Objects

      * DefaultCookiePolicy Objects

      * Cookie Objects

      * Examples

    * "xmlrpc" --- XMLRPC 서버와 클라이언트 모듈

    * "xmlrpc.client" --- XML-RPC client access

      * ServerProxy Objects

      * DateTime Objects

      * Binary Objects

      * Fault Objects

      * ProtocolError Objects

      * MultiCall Objects

      * Convenience Functions

      * Example of Client Usage

      * Example of Client and Server Usage

    * "xmlrpc.server" --- 기본 XML-RPC 서버

      * SimpleXMLRPCServer 객체

        * SimpleXMLRPCServer 예제

      * CGIXMLRPCRequestHandler

      * XMLRPC 서버 문서화

      * DocXMLRPCServer 객체

      * DocCGIXMLRPCRequestHandler

    * "ipaddress" --- IPv4/IPv6 manipulation library

      * Convenience factory functions

      * IP Addresses

        * Address objects

        * Conversion to Strings and Integers

        * Operators

          * Comparison operators

          * Arithmetic operators

      * IP Network definitions

        * Prefix, net mask and host mask

        * Network objects

        * Operators

          * Logical operators

          * Iteration

          * Networks as containers of addresses

      * Interface objects

        * Operators

          * Logical operators

      * Other Module Level Functions

      * Custom Exceptions

  * 멀티미디어 서비스

    * "audioop" --- Manipulate raw audio data

    * "aifc" --- AIFF와 AIFC 파일 읽고 쓰기

    * "sunau" --- Sun AU 파일 읽고 쓰기

      * AU_read 객체

      * AU_write 객체

    * "wave" --- WAV 파일 읽고 쓰기

      * Wave_read 객체

      * Wave_write 객체

    * "chunk" --- IFF 청크된 데이터 읽기

    * "colorsys" --- 색 체계 간의 변환

    * "imghdr" --- 이미지 유형 판단

    * "sndhdr" --- 음향 파일 유형 판단

    * "ossaudiodev" --- Access to OSS-compatible audio devices

      * Audio Device Objects

      * Mixer Device Objects

  * 국제화

    * "gettext" --- Multilingual internationalization services

      * GNU **gettext** API

      * Class-based API

        * The "NullTranslations" class

        * The "GNUTranslations" class

        * Solaris message catalog support

        * The Catalog constructor

      * Internationalizing your programs and modules

        * Localizing your module

        * Localizing your application

        * Changing languages on the fly

        * Deferred translations

      * Acknowledgements

    * "locale" --- Internationalization services

      * Background, details, hints, tips and caveats

      * For extension writers and programs that embed Python

      * Access to message catalogs

  * 프로그램 프레임워크

    * "turtle" --- Turtle graphics

      * Introduction

      * Overview of available Turtle and Screen methods

        * Turtle methods

        * Methods of TurtleScreen/Screen

      * Methods of RawTurtle/Turtle and corresponding functions

        * Turtle motion

        * Tell Turtle's state

        * Settings for measurement

        * Pen control

          * Drawing state

          * Color control

          * Filling

          * More drawing control

        * Turtle state

          * Visibility

          * Appearance

        * Using events

        * Special Turtle methods

        * Compound shapes

      * Methods of TurtleScreen/Screen and corresponding functions

        * Window control

        * Animation control

        * Using screen events

        * Input methods

        * Settings and special methods

        * Methods specific to Screen, not inherited from TurtleScreen

      * Public classes

      * Help and configuration

        * How to use help

        * Translation of docstrings into different languages

        * How to configure Screen and Turtles

      * "turtledemo" --- Demo scripts

      * Changes since Python 2.6

      * Changes since Python 3.0

    * "cmd" --- 줄 지향 명령 인터프리터 지원

      * Cmd 객체

      * Cmd 예

    * "shlex" --- Simple lexical analysis

      * shlex Objects

      * Parsing Rules

      * Improved Compatibility with Shells

  * Tk를 사용한 그래픽 사용자 인터페이스

    * "tkinter" --- Tcl/Tk 파이썬 인터페이스

      * Tkinter 모듈

      * Tkinter 구명조끼

        * 이 절을 사용하는 방법

        * 간단한 Hello World 프로그램

      * Tcl/Tk (아주 빨리) 훑어보기

      * 기본 Tk를 Tkinter로 매핑하기

      * Tk와 Tkinter의 관계

      * 간편한 레퍼런스

        * 옵션 설정

        * 패커

        * 패커 옵션

        * 위젯 변수 결합하기

        * 창 관리자

        * Tk 옵션 데이터형

        * 바인딩과 이벤트

        * index 매개 변수

        * 이미지

      * 파일 처리기

    * "tkinter.ttk" --- Tk themed widgets

      * Using Ttk

      * Ttk Widgets

      * Widget

        * Standard Options

        * Scrollable Widget Options

        * Label Options

        * Compatibility Options

        * Widget States

        * ttk.Widget

      * Combobox

        * Options

        * Virtual events

        * ttk.Combobox

      * Spinbox

        * Options

        * Virtual events

        * ttk.Spinbox

      * Notebook

        * Options

        * Tab Options

        * Tab Identifiers

        * Virtual Events

        * ttk.Notebook

      * Progressbar

        * Options

        * ttk.Progressbar

      * Separator

        * Options

      * Sizegrip

        * Platform-specific notes

        * Bugs

      * Treeview

        * Options

        * Item Options

        * Tag Options

        * Column Identifiers

        * Virtual Events

        * ttk.Treeview

      * Ttk Styling

        * Layouts

    * "tkinter.tix" --- Extension widgets for Tk

      * Using Tix

      * Tix Widgets

        * Basic Widgets

        * File Selectors

        * Hierarchical ListBox

        * Tabular ListBox

        * Manager Widgets

        * Image Types

        * Miscellaneous Widgets

        * Form Geometry Manager

      * Tix Commands

    * "tkinter.scrolledtext" --- 스크롤 되는 Text 위젯

    * IDLE

      * Menus

        * File menu (Shell and Editor)

        * Edit menu (Shell and Editor)

        * Format menu (Editor window only)

        * Run menu (Editor window only)

        * Shell menu (Shell window only)

        * Debug menu (Shell window only)

        * Options menu (Shell and Editor)

        * Window menu (Shell and Editor)

        * Help menu (Shell and Editor)

        * Context Menus

      * Editing and navigation

        * Editor windows

        * Key bindings

        * Automatic indentation

        * Completions

        * Calltips

        * Code Context

        * Python Shell window

        * Text colors

      * Startup and code execution

        * Command line usage

        * Startup failure

        * Running user code

        * User output in Shell

        * Developing tkinter applications

        * Running without a subprocess

      * Help and preferences

        * Help sources

        * Setting preferences

        * IDLE on macOS

        * Extensions

    * 기타 그래픽 사용자 인터페이스 패키지

  * 개발 도구

    * "typing" --- Support for type hints

      * Type aliases

      * NewType

      * Callable

      * Generics

      * User-defined generic types

      * The "Any" type

      * Classes, functions, and decorators

    * "pydoc" --- 설명서 생성과 온라인 도움말 시스템

    * "doctest" --- 대화형 파이썬 예제 테스트

      * 간단한 사용법: 독스트링에 있는 예제 확인하기

      * 간단한 사용법: 텍스트 파일에 있는 예제 확인하기

      * 작동 방법

        * 어떤 독스트링을 검사합니까?

        * 독스트링 예제는 어떻게 인식됩니까?

        * 실행 컨텍스트란 무엇입니까?

        * 예외는 어떻게 됩니까?

        * 옵션 플래그

        * 지시자

        * 경고

      * 기본 API

      * Unittest API

      * 고급 API

        * DocTest 객체

        * Example 객체

        * DocTestFinder 객체

        * DocTestParser 객체

        * DocTestRunner 객체

        * OutputChecker 객체

      * 디버깅

      * 맺음말

    * "unittest" --- 단위 테스트 프레임워크

      * 기본 예시

      * 명령행 인터페이스

        * 명령행 옵션

      * 테스트 탐색(Discovery)

      * 테스트 코드 구조 잡기

      * 이전의 테스트 코드를 다시 사용하기

      * 테스트 건너뛰기와 예상된 실패

      * 부분 테스트(subtest)를 사용하여 테스트 반복 구별 짖기

      * 클래스와 함수

        * 테스트 케이스

          * 폐지된 에일리어스

        * 테스트 분류

        * 테스트를 로드하고 실행하기

          * load_tests 프로토콜

      * 클래스와 모듈 픽스쳐

        * setUpClass 와 tearDownClass

        * setUpModule 과 tearDownModule

      * 시그널 처리하기

    * "unittest.mock" --- mock object library

      * Quick Guide

      * The Mock Class

        * Calling

        * Deleting Attributes

        * Mock names and the name attribute

        * Attaching Mocks as Attributes

      * The patchers

        * patch

        * patch.object

        * patch.dict

        * patch.multiple

        * patch methods: start and stop

        * patch builtins

        * TEST_PREFIX

        * Nesting Patch Decorators

        * Where to patch

        * Patching Descriptors and Proxy Objects

      * MagicMock and magic method support

        * Mocking Magic Methods

        * Magic Mock

      * Helpers

        * sentinel

        * DEFAULT

        * call

        * create_autospec

        * ANY

        * FILTER_DIR

        * mock_open

        * Autospeccing

        * Sealing mocks

    * "unittest.mock" --- getting started

      * Using Mock

        * Mock Patching Methods

        * Mock for Method Calls on an Object

        * Mocking Classes

        * Naming your mocks

        * Tracking all Calls

        * Setting Return Values and Attributes

        * Raising exceptions with mocks

        * Side effect functions and iterables

        * Creating a Mock from an Existing Object

      * Patch Decorators

      * Further Examples

        * Mocking chained calls

        * Partial mocking

        * Mocking a Generator Method

        * Applying the same patch to every test method

        * Mocking Unbound Methods

        * Checking multiple calls with mock

        * Coping with mutable arguments

        * Nesting Patches

        * Mocking a dictionary with MagicMock

        * Mock subclasses and their attributes

        * Mocking imports with patch.dict

        * Tracking order of calls and less verbose call assertions

        * More complex argument matching

    * 2to3 - 파이썬 2에서 파이썬 3으로 자동 코드 변환

      * 2to3 사용법

      * 변환자 목록

      * "lib2to3" - 2to3 라이브러리

    * "test" --- Regression tests package for Python

      * Writing Unit Tests for the "test" package

      * Running tests using the command-line interface

    * "test.support" --- Utilities for the Python test suite

    * "test.support.script_helper" --- Utilities for the Python
      execution tests

  * 디버깅과 프로파일링

    * "bdb" --- Debugger framework

    * "faulthandler" --- 파이썬 트레이스백 덤프

      * 트레이스백 덤프하기

      * 결함 처리기 상태

      * 시간 초과 후에 트레이스백 덤프하기

      * 사용자 시그널에 트레이스백 덤프하기

      * 파일 기술자 관련 문제

      * 예제

    * "pdb" --- 파이썬 디버거

      * 디버거 명령들

    * The Python Profilers

      * Introduction to the profilers

      * Instant User's Manual

      * "profile" and "cProfile" Module Reference

      * The "Stats" Class

      * What Is Deterministic Profiling?

      * Limitations

      * Calibration

      * Using a custom timer

    * "timeit" --- 작은 코드 조각의 실행 시간 측정

      * 기본 예제

      * 파이썬 인터페이스

      * 명령 줄 인터페이스

      * 예제

    * "trace" --- 파이썬 문장 실행 추적

      * 명령 줄 사용법

        * 주요 옵션

        * 수정자

        * 필터

      * 프로그래밍 인터페이스

    * "tracemalloc" --- Trace memory allocations

      * Examples

        * Display the top 10

        * Compute differences

        * Get the traceback of a memory block

        * Pretty top

      * API

        * Functions

        * DomainFilter

        * Filter

        * Frame

        * Snapshot

        * Statistic

        * StatisticDiff

        * Trace

        * Traceback

  * 소프트웨어 패키징 및 배포

    * "distutils" --- 파이썬 모듈 빌드와 설치

    * "ensurepip" --- "pip" 설치 프로그램 부트스트랩

      * 명령 줄 인터페이스

      * 모듈 API

    * "venv" --- 가상 환경 생성

      * 가상 환경 만들기

      * API

      * "EnvBuilder" 확장 예제

    * "zipapp" --- Manage executable Python zip archives

      * Basic Example

      * Command-Line Interface

      * Python API

      * Examples

      * Specifying the Interpreter

      * Creating Standalone Applications with zipapp

        * Making a Windows executable

        * Caveats

      * The Python Zip Application Archive Format

  * 파이썬 실행시간 서비스

    * "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

  * 사용자 정의 파이썬 인터프리터

    * "code" --- 인터프리터 베이스 클래스

      * 대화형 인터프리터 객체

      * 대화형 콘솔 객체

    * "codeop" --- 파이썬 코드 컴파일

  * 모듈 임포트 하기

    * "zipimport" --- Zip 저장소에서 모듈 임포트

      * zipimporter 객체

      * 예제

    * "pkgutil" --- 패키지 확장 유틸리티

    * "modulefinder" --- 스크립트에서 사용되는 모듈 찾기

      * "ModuleFinder"의 사용 예

    * "runpy" --- 파이썬 모듈 찾기와 실행

    * "importlib" --- The implementation of "import"

      * Introduction

      * Functions

      * "importlib.abc" -- Abstract base classes related to import

      * "importlib.resources" -- Resources

      * "importlib.machinery" -- Importers and path hooks

      * "importlib.util" -- Utility code for importers

      * Examples

        * Importing programmatically

        * Checking if a module can be imported

        * Importing a source file directly

        * Setting up an importer

        * Approximating "importlib.import_module()"

  * 파이썬 언어 서비스

    * "parser" --- Access Python parse trees

      * Creating ST Objects

      * Converting ST Objects

      * Queries on ST Objects

      * Exceptions and Error Handling

      * ST Objects

      * Example: Emulation of "compile()"

    * "ast" --- Abstract Syntax Trees

      * Node classes

      * Abstract Grammar

      * "ast" Helpers

    * "symtable" --- 컴파일러 심볼 테이블 액세스

      * 심볼 테이블 생성하기

      * 심볼 테이블 검사하기

    * "symbol" --- 파이썬 구문 분석 트리에 사용되는 상수

    * "token" --- 파이썬 구문 분석 트리에 사용되는 상수

    * "keyword" --- 파이썬 키워드 검사

    * "tokenize" --- 파이썬 소스를 위한 토크나이저

      * 입력 토큰화하기

      * 명령 줄 사용법

      * 예제

    * "tabnanny" --- 모호한 들여쓰기 감지

    * "pyclbr" --- Python module browser support

      * Function 객체

      * Class 객체

    * "py_compile" --- 파이썬 소스 파일 컴파일

    * "compileall" --- 파이썬 라이브러리 바이트 컴파일하기

      * 명령 줄 사용

      * 공용 함수

    * "dis" --- Disassembler for Python bytecode

      * Bytecode analysis

      * Analysis functions

      * Python Bytecode Instructions

      * Opcode collections

    * "pickletools" --- 피클 개발자를 위한 도구

      * 명령 줄 사용법

        * 명령 줄 옵션

      * 프로그래밍 인터페이스

  * 기타 서비스

    * "formatter" --- Generic output formatting

      * The Formatter Interface

      * Formatter Implementations

      * The Writer Interface

      * Writer Implementations

  * MS 윈도우 특정 서비스

    * "msilib" --- Read and write Microsoft Installer files

      * Database Objects

      * View Objects

      * Summary Information Objects

      * Record Objects

      * Errors

      * CAB Objects

      * Directory Objects

      * Features

      * GUI classes

      * Precomputed tables

    * "msvcrt" --- MS VC++ 런타임의 유용한 루틴

      * 파일 연산

      * 콘솔 I/O

      * 기타 함수

    * "winreg" --- Windows registry access

      * Functions

      * Constants

        * HKEY_* Constants

        * Access Rights

          * 64-bit Specific

        * Value Types

      * Registry Handle Objects

    * "winsound" --- 윈도우용 소리 재생 인터페이스

  * 유닉스 특정 서비스

    * "posix" --- 가장 일반적인 POSIX 시스템 호출

      * 대용량 파일 지원

      * 주목할만한 모듈 내용

    * "pwd" --- 암호 데이터베이스

    * "spwd" --- 섀도 암호 데이터베이스

    * "grp" --- 그룹 데이터베이스

    * "crypt" --- 유닉스 비밀번호 확인 함수

      * 해싱 방법

      * 모듈 어트리뷰트

      * 모듈 함수

      * 예제

    * "termios" --- POSIX 스타일 tty 제어

      * 예제

    * "tty" --- 터미널 제어 함수

    * "pty" --- 의사 터미널 유틸리티

      * 예제

    * "fcntl" --- "fcntl"과 "ioctl" 시스템 호출

    * "pipes" --- 셸 파이프라인에 대한 인터페이스

      * Template 객체

    * "resource" --- 자원 사용 정보

      * 자원 제한

      * 자원 사용량

    * "nis" --- Sun의 NIS(옐로 페이지)에 대한 인터페이스

    * "syslog" --- 유닉스 syslog 라이브러리 루틴

      * 예제

        * 간단한 예제

  * 대체된 모듈

    * "optparse" --- Parser for command line options

      * Background

        * Terminology

        * What are options for?

        * What are positional arguments for?

      * Tutorial

        * Understanding option actions

        * The store action

        * Handling boolean (flag) options

        * Other actions

        * Default values

        * Generating help

          * Grouping Options

        * Printing a version string

        * How "optparse" handles errors

        * Putting it all together

      * Reference Guide

        * Creating the parser

        * Populating the parser

        * Defining options

        * Option attributes

        * Standard option actions

        * Standard option types

        * Parsing arguments

        * Querying and manipulating your option parser

        * Conflicts between options

        * Cleanup

        * Other methods

      * Option Callbacks

        * Defining a callback option

        * How callbacks are called

        * Raising errors in a callback

        * Callback example 1: trivial callback

        * Callback example 2: check option order

        * Callback example 3: check option order (generalized)

        * Callback example 4: check arbitrary condition

        * Callback example 5: fixed arguments

        * Callback example 6: variable arguments

      * Extending "optparse"

        * Adding new types

        * Adding new actions

    * "imp" --- Access the *import* internals

      * Examples

  * 문서로 만들어지지 않은 모듈

    * 플랫폼 특정 모듈

* 파이썬 인터프리터 확장 및 내장

  * 권장 제삼자 도구

  * 제삼자 도구 없이 확장 만들기

    * 1. Extending Python with C or C++

      * 1.1. A Simple Example

      * 1.2. Intermezzo: Errors and Exceptions

      * 1.3. Back to the Example

      * 1.4. The Module's Method Table and Initialization Function

      * 1.5. Compilation and Linkage

      * 1.6. Calling Python Functions from C

      * 1.7. Extracting Parameters in Extension Functions

      * 1.8. Keyword Parameters for Extension Functions

      * 1.9. Building Arbitrary Values

      * 1.10. Reference Counts

        * 1.10.1. Reference Counting in Python

        * 1.10.2. Ownership Rules

        * 1.10.3. Thin Ice

        * 1.10.4. NULL Pointers

      * 1.11. Writing Extensions in C++

      * 1.12. Providing a C API for an Extension Module

    * 2. Defining Extension Types: Tutorial

      * 2.1. The Basics

      * 2.2. Adding data and methods to the Basic example

      * 2.3. Providing finer control over data attributes

      * 2.4. Supporting cyclic garbage collection

      * 2.5. Subclassing other types

    * 3. Defining Extension Types: Assorted Topics

      * 3.1. Finalization and De-allocation

      * 3.2. Object Presentation

      * 3.3. Attribute Management

        * 3.3.1. Generic Attribute Management

        * 3.3.2. Type-specific Attribute Management

      * 3.4. Object Comparison

      * 3.5. Abstract Protocol Support

      * 3.6. Weak Reference Support

      * 3.7. More Suggestions

    * 4. C와 C++ 확장 빌드하기

      * 4.1. distutils로 C와 C++ 확장 빌드하기

      * 4.2. 확장 모듈 배포하기

    * 5. 윈도우에서 C와 C++ 확장 빌드하기

      * 5.1. 요리책 접근법

      * 5.2. 유닉스와 윈도우의 차이점

      * 5.3. DLL을 실제로 사용하기

  * 더 큰 응용 프로그램에 CPython 런타임을 내장하기

    * 1. 다른 응용 프로그램에 파이썬 내장하기

      * 1.1. 매우 고수준의 내장

      * 1.2. 매우 고수준 내장을 넘어서: 개요

      * 1.3. 순수한 내장

      * 1.4. 내장된 파이썬을 확장하기

      * 1.5. C++로 파이썬 내장하기

      * 1.6. 유닉스 계열 시스템에서 컴파일과 링크하기

* 파이썬/C API 레퍼런스 설명서

  * Introduction

    * Coding standards

    * Include Files

    * Useful macros

    * Objects, Types and Reference Counts

      * Reference Counts

        * Reference Count Details

      * Types

    * Exceptions

    * Embedding Python

    * Debugging Builds

  * 안정적인 응용 프로그램 바이너리 인터페이스

  * The Very High Level Layer

  * 참조 횟수

  * Exception Handling

    * Printing and clearing

    * Raising exceptions

    * Issuing warnings

    * Querying the error indicator

    * Signal Handling

    * Exception Classes

    * Exception Objects

    * Unicode Exception Objects

    * Recursion Control

    * Standard Exceptions

    * Standard Warning Categories

  * 유틸리티

    * Operating System Utilities

    * System Functions

    * Process Control

    * 모듈 임포트 하기

    * 데이터 마샬링 지원

    * Parsing arguments and building values

      * Parsing arguments

        * Strings and buffers

        * Numbers

        * Other objects

        * API Functions

      * Building values

    * 문자열 변환과 포매팅

    * 리플렉션

    * 코덱 등록소와 지원 함수

      * 코덱 조회 API

      * 유니코드 인코딩 에러 처리기용 등록소 API

  * 추상 객체 계층

    * Object Protocol

    * 숫자 프로토콜

    * 시퀀스 프로토콜

    * 매핑 프로토콜

    * 이터레이터 프로토콜

    * 버퍼 프로토콜

      * 버퍼 구조체

      * 버퍼 요청 유형

        * 요청 독립적 필드

        * readonly, format

        * shape, strides, suboffsets

        * 연속성 요청

        * 복합 요청

      * 복잡한 배열

        * NumPy-스타일: shape과 strides

        * PIL-스타일: shape, strides 및 suboffsets

      * 버퍼 관련 함수

    * 낡은 버퍼 프로토콜

  * 구상 객체 계층

    * 기본 객체

      * 형 객체

      * "None" 객체

    * 숫자 객체

      * 정수 객체

      * 불리언 객체

      * 부동 소수점 객체

      * 복소수 객체

        * C 구조체로서의 복소수

        * 파이썬 객체로서의 복소수

    * 시퀀스 객체

      * 바이트열 객체

      * 바이트 배열 객체

        * 형 검사 매크로

        * 직접 API 함수

        * 매크로

      * Unicode Objects and Codecs

        * Unicode Objects

          * Unicode Type

          * Unicode Character Properties

          * Creating and accessing Unicode strings

          * Deprecated Py_UNICODE APIs

          * Locale Encoding

          * File System Encoding

          * wchar_t Support

        * Built-in Codecs

          * Generic Codecs

          * UTF-8 Codecs

          * UTF-32 Codecs

          * UTF-16 Codecs

          * UTF-7 Codecs

          * Unicode-Escape Codecs

          * Raw-Unicode-Escape Codecs

          * Latin-1 Codecs

          * ASCII Codecs

          * Character Map Codecs

          * MBCS codecs for Windows

          * Methods & Slots

        * Methods and Slot Functions

      * 튜플 객체

      * 구조체 시퀀스 객체

      * 리스트 객체

    * 컨테이너 객체

      * 딕셔너리 객체

      * 집합 객체

    * 함수 객체

      * 함수 객체

      * 인스턴스 메서드 객체

      * 메서드 객체

      * 셀 객체

      * 코드 객체

    * 기타 객체

      * 파일 객체

      * Module Objects

        * Initializing C modules

          * Single-phase initialization

          * Multi-phase initialization

          * Low-level module creation functions

          * Support functions

        * Module lookup

      * 이터레이터 객체

      * 디스크립터 객체

      * 슬라이스 객체

      * Ellipsis 객체

      * MemoryView 객체

      * 약한 참조 객체

      * 캡슐

      * 제너레이터 객체

      * 코루틴 객체

      * 컨텍스트 변수 객체

      * DateTime 객체

  * Initialization, Finalization, and Threads

    * Before Python Initialization

    * Global configuration variables

    * Initializing and finalizing the interpreter

    * Process-wide parameters

    * Thread State and the Global Interpreter Lock

      * Releasing the GIL from extension code

      * Non-Python created threads

      * High-level API

      * Low-level API

    * Sub-interpreter support

      * Bugs and caveats

    * Asynchronous Notifications

    * Profiling and Tracing

    * Advanced Debugger Support

    * Thread Local Storage Support

      * Thread Specific Storage (TSS) API

        * Dynamic Allocation

        * Methods

      * Thread Local Storage (TLS) API

  * Memory Management

    * Overview

    * Raw Memory Interface

    * Memory Interface

    * Object allocators

    * Default Memory Allocators

    * Customize Memory Allocators

    * The pymalloc allocator

      * Customize pymalloc Arena Allocator

    * tracemalloc C API

    * Examples

  * 객체 구현 지원

    * 힙에 객체 할당하기

    * Common Object Structures

    * Type Objects

    * Number Object Structures

    * Mapping Object Structures

    * Sequence Object Structures

    * Buffer Object Structures

    * Async Object Structures

    * 순환 가비지 수집 지원

  * API와 ABI 버전 붙이기

* 파이썬 모듈 배포하기

  * 핵심 용어

  * 공개 소스 라이센스 와 협업

  * 도구 설치하기

  * 파이썬 패키징 사용자 지침서 읽기

  * 어떻게 ...?

    * ... 내 프로젝트의 이름을 고릅니까?

    * ... 바이너리 확장을 만들고 배포합니까?

* 파이썬 모듈 설치하기

  * 핵심 용어

  * 기본 사용법

  * 어떻게 ...?

    * ... 파이썬 3.4 이전 버전의 파이썬에서 "pip" 를 설치합니까?

    * ... 현재 사용자만을 위해 패키지를 설치합니까?

    * ... 과학 계산용 파이썬 패키지를 설치합니까?

    * ... 병렬로 설치된 여러 버전의 파이썬으로 작업합니까?

  * 흔히 만나는 설치 문제

    * 리눅스에 시스템 파이썬 설치하기

    * Pip가 설치되지 않았습니다.

    * 바이너리 확장 설치하기

* 파이썬 HOWTO

  * Porting Python 2 Code to Python 3

    * The Short Explanation

    * Details

      * Drop support for Python 2.6 and older

      * Make sure you specify the proper version support in your
        "setup.py" file

      * Have good test coverage

      * Learn the differences between Python 2 & 3

      * Update your code

        * Division

        * Text versus binary data

        * Use feature detection instead of version detection

      * Prevent compatibility regressions

      * Check which dependencies block your transition

      * Update your "setup.py" file to denote Python 3 compatibility

      * Use continuous integration to stay compatible

      * Consider using optional static type checking

  * 확장 모듈을 파이썬 3에 이식하기

    * 조건부 컴파일

    * 객체 API의 변경 사항

      * str/unicode 통합

      * long/int 통합

    * 모듈 초기화와 상태

    * 캡슐로 대체된 CObject

    * 다른 옵션

  * Curses Programming with Python

    * What is curses?

      * The Python curses module

    * Starting and ending a curses application

    * Windows and Pads

    * Displaying Text

      * Attributes and Color

    * User Input

    * For More Information

  * Descriptor HowTo Guide

    * Abstract

    * Definition and Introduction

    * Descriptor Protocol

    * Invoking Descriptors

    * Descriptor Example

    * Properties

    * Functions and Methods

    * Static Methods and Class Methods

  * 함수형 프로그래밍 HOWTO

    * 소개

      * 형식적 증명 가능성

      * 모듈성

      * 디버깅과 테스트 용이성

      * 결합성

    * 이터레이터

      * 이터레이터를 지원하는 데이터형

    * 제너레이터 표현식과 리스트 컴프리헨션

    * 제너레이터

      * 제너레이터에 값 전달하기

    * 내장 함수

    * itertools 모듈

      * 새로운 이터레이터 만들기

      * 요소에 대한 함수 호출

      * 요소 선택하기

      * 조합 함수

      * 요소 분류

    * functools 모듈

      * operator 모듈

    * 작은 함수와 람다 표현식

    * 개정내역 및 감사의 글

    * 참고 문헌

      * 일반

      * 파이썬 특정

      * 파이썬 설명서

  * 로깅 HOWTO

    * 기초 로깅 자습서

      * 로깅을 사용할 때

      * 간단한 예

      * 파일에 로깅 하기

      * 여러 모듈에서의 로깅

      * 변수 데이터 로깅

      * 표시된 메시지의 포맷 변경

      * 메시지에 날짜/시간 표시

      * 다음 단계

    * 고급 로깅 자습서

      * 로깅 흐름

      * 로거

      * 처리기

      * 포매터

      * 로깅 구성

      * 구성이 제공되지 않으면 어떻게 되는가

      * 라이브러리 로깅 구성

    * 로깅 수준

      * 사용자 정의 수준

    * 유용한 처리기

    * 로깅 중에 발생하는 예외

    * 임의의 객체를 메시지로 사용하기

    * 최적화

  * 로깅 요리책

    * 여러 모듈에서 로깅 사용하기

    * 여러 스레드에서 로깅 하기

    * 다중 처리기 및 포매터

    * 여러 대상으로 로깅 하기

    * 구성 서버 예제

    * 블록 하는 처리기 다루기

    * 네트워크에서 로깅 이벤트 보내고 받기

    * 로그 출력에 문맥 정보 추가

      * 문맥 정보 전달에 LoggerAdapters 사용하기

        * 딕셔너리 이외의 객체를 사용하여 문맥 정보 전달하기

      * 문맥 정보 전달에 필터 사용하기

    * 여러 프로세스에서 단일 파일에 로깅 하기

      * Using concurrent.futures.ProcessPoolExecutor

    * 파일 회전 사용하기

    * 대체 포매팅 스타일 사용하기

    * 사용자 정의 "LogRecord"

    * QueueHandler 서브 클래스 만들기 - ZeroMQ 예제

    * QueueListener 서브 클래스 만들기 - ZeroMQ 예제

    * 딕셔너리 기반 구성의 예

    * rotator와 namer를 사용해서 로그 회전 처리하기

    * 좀 더 정교한 multiprocessing 예제

    * SysLogHandler로 전송된 메시지에 BOM 삽입하기

    * 구조적 로깅 구현

    * "dictConfig()"로 처리기를 사용자 정의하기

    * 응용 프로그램 전체에서 특정 포맷 스타일 사용하기

      * LogRecord 팩토리 사용

      * 사용자 정의 메시지 객체 사용

    * "dictConfig()"로 필터 구성하기

    * 사용자 정의된 예외 포매팅

    * 로깅 메시지 말하기

    * 로깅 메시지를 버퍼링하고 조건부 출력하기

    * 구성을 통해 UTC(GMT)로 시간을 포맷하기

    * 선택적 로깅을 위해 컨텍스트 관리자 사용하기

    * A CLI application starter template

    * A Qt GUI for logging

  * Regular Expression HOWTO

    * Introduction

    * Simple Patterns

      * Matching Characters

      * Repeating Things

    * Using Regular Expressions

      * Compiling Regular Expressions

      * The Backslash Plague

      * Performing Matches

      * Module-Level Functions

      * Compilation Flags

    * More Pattern Power

      * More Metacharacters

      * Grouping

      * Non-capturing and Named Groups

      * Lookahead Assertions

    * Modifying Strings

      * Splitting Strings

      * Search and Replace

    * Common Problems

      * Use String Methods

      * match() versus search()

      * Greedy versus Non-Greedy

      * Using re.VERBOSE

    * Feedback

  * 소켓 프로그래밍 HOWTO

    * 소켓

      * 역사

    * 소켓 만들기

      * IPC

    * 소켓 사용하기

      * 바이너리 데이터

    * 연결 끊기

      * 소켓이 죽을 때

    * 비 블로킹 소켓

  * 정렬 HOW TO

    * 정렬 기초

    * 키 함수

    * operator 모듈 함수

    * 오름차순과 내림차순

    * 정렬 안정성과 복잡한 정렬

    * 장식-정렬-복원을 사용하는 낡은 방법

    * *cmp* 매개 변수를 사용하는 낡은 방법

    * 잡동사니

  * 유니코드 HOWTO

    * 유니코드 소개

      * 정의

      * 인코딩

      * 참조

    * 파이썬의 유니코드 지원

      * 문자열 형

      * 바이트열로 변환

      * 파이썬 소스 코드에서 유니코드 리터럴

      * 유니코드 속성

      * Comparing Strings

      * 유니코드 정규식

      * 참조

    * 유니코드 데이터 읽고 쓰기

      * 유니코드 파일 이름

      * 유니코드 인식 프로그램 작성 팁

        * 파일 인코딩끼리 변환

        * 알 수 없는 인코딩의 파일

      * 참조

    * 감사 인사

  * HOWTO Fetch Internet Resources Using The urllib Package

    * Introduction

    * Fetching URLs

      * Data

      * Headers

    * Handling Exceptions

      * URLError

      * HTTPError

        * Error Codes

      * Wrapping it Up

        * Number 1

        * Number 2

    * info and geturl

    * Openers and Handlers

    * Basic Authentication

    * Proxies

    * Sockets and Layers

    * Footnotes

  * Argparse 자습서

    * 개념

    * 기본

    * 위치 인자 소개

    * 옵션 인자 소개

      * 짧은 옵션

    * 위치 및 옵션 인자 결합하기

    * 조금 더 발전시키기

      * 충돌하는 옵션들

    * 맺음말

  * ipaddress 모듈에 대한 소개

    * 주소/네트워크/인터페이스 객체 만들기

      * IP 버전에 대한 참고 사항

      * IP 호스트 주소

      * 네트워크 정의

      * 호스트 인터페이스

    * 주소/네트워크/인터페이스 객체 검사

    * 주소 리스트로서의 네트워크

    * 비교

    * 다른 모듈과 함께 IP 주소 사용하기

    * 인스턴스 생성 실패 시 세부 사항 가져오기

  * Argument Clinic How-To

    * The Goals Of Argument Clinic

    * Basic Concepts And Usage

    * Converting Your First Function

    * Advanced Topics

      * Symbolic default values

      * Renaming the C functions and variables generated by Argument
        Clinic

      * Converting functions using PyArg_UnpackTuple

      * Optional Groups

      * Using real Argument Clinic converters, instead of "legacy
        converters"

      * Py_buffer

      * Advanced converters

      * Parameter default values

      * The "NULL" default value

      * Expressions specified as default values

      * Using a return converter

      * Cloning existing functions

      * Calling Python code

      * Using a "self converter"

      * Writing a custom converter

      * Writing a custom return converter

      * METH_O and METH_NOARGS

      * tp_new and tp_init functions

      * Changing and redirecting Clinic's output

      * The #ifdef trick

      * Using Argument Clinic in Python files

  * DTrace와 SystemTap으로 CPython 계측하기

    * 정적 마커 활성화하기

    * 정적 DTrace 프로브

    * 정적 SystemTap 마커

    * 사용 가능한 정적 마커

    * SystemTap 탭셋

    * 예제

* 파이썬 자주 나오는 질문들

  * General Python FAQ

    * General Information

    * Python in the real world

  * Programming FAQ

    * General Questions

    * Core Language

    * Numbers and strings

    * Performance

    * Sequences (Tuples/Lists)

    * Objects

    * Modules

  * Design and History FAQ

    * Why does Python use indentation for grouping of statements?

    * Why am I getting strange results with simple arithmetic
      operations?

    * Why are floating-point calculations so inaccurate?

    * Why are Python strings immutable?

    * Why must 'self' be used explicitly in method definitions and
      calls?

    * Why can't I use an assignment in an expression?

    * Why does Python use methods for some functionality (e.g.
      list.index()) but functions for other (e.g. len(list))?

    * Why is join() a string method instead of a list or tuple method?

    * How fast are exceptions?

    * Why isn't there a switch or case statement in Python?

    * Can't you emulate threads in the interpreter instead of relying
      on an OS-specific thread implementation?

    * Why can't lambda expressions contain statements?

    * Can Python be compiled to machine code, C or some other
      language?

    * How does Python manage memory?

    * Why doesn't CPython use a more traditional garbage collection
      scheme?

    * Why isn't all memory freed when CPython exits?

    * Why are there separate tuple and list data types?

    * How are lists implemented in CPython?

    * How are dictionaries implemented in CPython?

    * Why must dictionary keys be immutable?

    * Why doesn't list.sort() return the sorted list?

    * How do you specify and enforce an interface spec in Python?

    * Why is there no goto?

    * Why can't raw strings (r-strings) end with a backslash?

    * Why doesn't Python have a "with" statement for attribute
      assignments?

    * Why are colons required for the if/while/def/class statements?

    * Why does Python allow commas at the end of lists and tuples?

  * Library and Extension FAQ

    * General Library Questions

    * Common tasks

    * Threads

    * Input and Output

    * Network/Internet Programming

    * Databases

    * Mathematics and Numerics

  * 확장/내장 FAQ

    * C로 나만의 함수를 만들 수 있습니까?

    * C++로 나만의 함수를 만들 수 있습니까?

    * C를 쓰는 것은 어렵습니다; 대안이 있습니까?

    * C에서 임의의 파이썬 문장을 어떻게 실행할 수 있습니까?

    * C에서 임의의 파이썬 표현식을 어떻게 평가할 수 있습니까?

    * 파이썬 객체에서 C값을 어떻게 추출합니까?

    * Py_BuildValue()를 사용하여 임의 길이의 튜플을 만드는 방법은 무엇
      입니까?

    * C에서 객체의 메서드를 어떻게 호출합니까?

    * PyErr_Print()의 출력(또는 stdout/stderr로 인쇄되는 모든 것)을 어
      떻게 잡습니까?

    * C에서 파이썬으로 작성된 모듈에 어떻게 액세스합니까?

    * 파이썬에서 C++ 객체에 어떻게 인터페이스 합니까?

    * Setup 파일을 사용하여 모듈을 추가했는데 make가 실패합니다; 왜 그
      렇습니까?

    * 확장을 어떻게 디버깅합니까?

    * 리눅스 시스템에서 파이썬 모듈을 컴파일하고 싶지만, 일부 파일이
      없습니다. 왜 그렇습니까?

    * "잘못된 입력"과 "불완전한 입력"을 어떻게 구별할 수 있습니까?

    * 정의되지 않은 g++ 기호 __builtin_new나 __pure_virtual을 어떻게
      찾을 수 있습니까?

    * 일부 메서드는 C로 구현되고 그 밖의 것은 파이썬으로 구현된 (예를
      들어 상속을 통해) 객체 클래스를 만들 수 있습니까?

  * Python on Windows FAQ

    * How do I run a Python program under Windows?

    * How do I make Python scripts executable?

    * Why does Python sometimes take so long to start?

    * How do I make an executable from a Python script?

    * Is a "*.pyd" file the same as a DLL?

    * How can I embed Python into a Windows application?

    * How do I keep editors from inserting tabs into my Python source?

    * How do I check for a keypress without blocking?

  * 그래픽 사용자 인터페이스 FAQ

    * 일반적인 GUI 질문

    * 파이썬에 어떤 플랫폼 독립적인 GUI 툴킷이 있습니까?

    * 파이썬에 어떤 플랫폼 특정 GUI 툴킷이 있습니까?

    * Tkinter 질문

  * "왜 내 컴퓨터에 파이썬이 설치되어 있습니까?" FAQ

    * 파이썬이 무엇입니까?

    * 내 컴퓨터에 파이썬이 설치된 이유는 무엇입니까?

    * 파이썬을 삭제할 수 있습니까?

* 용어집

* 이 설명서에 관하여

  * 파이썬 설명서의 공헌자들

* 버그 다루기

  * 설명서 버그

  * 파이썬 문제 추적기 사용하기

  * 파이썬에 직접 이바지하기 입문

* 저작권

* 역사와 라이센스

  * 소프트웨어의 역사

  * 파이썬에 액세스하거나 사용하기 위한 이용 약관

    * PSF LICENSE AGREEMENT FOR PYTHON 3.7.16

    * BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0

    * CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1

    * CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2

  * 포함된 소프트웨어에 대한 라이센스 및 승인

    * 메르센 트위스터

    * 소켓

    * 비동기 소켓 서비스

    * 쿠키 관리

    * 실행 추적

    * UUencode 및 UUdecode 함수

    * XML 원격 프로시저 호출

    * test_epoll

    * Select kqueue

    * SipHash24

    * strtod 와 dtoa

    * OpenSSL

    * expat

    * libffi

    * zlib

    * cfuhash

    * libmpdec
