Staging
v0.8.1
https://github.com/python/cpython
Revision f533cb80cbbb7acdf9ce1978cfba095ce5eeedaa authored by Yurii Karabas on 26 November 2020, 07:36:37 UTC, committed by GitHub on 26 November 2020, 07:36:37 UTC
1 parent 87f7ab5
Raw File
Tip revision: f533cb80cbbb7acdf9ce1978cfba095ce5eeedaa authored by Yurii Karabas on 26 November 2020, 07:36:37 UTC
bpo-42392: Remove loop parameter from asyncio.streams (GH-23517)
Tip revision: f533cb8
struct.py
__all__ = [
    # Functions
    'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
    'iter_unpack',

    # Classes
    'Struct',

    # Exceptions
    'error'
    ]

from _struct import *
from _struct import _clearcache
from _struct import __doc__
back to top