Staging
v0.5.1
https://github.com/python/cpython
Revision e4fe303b8cca525e97d44e80c7e53bdab9dd9187 authored by Yurii Karabas on 28 November 2020, 08:21:17 UTC, committed by GitHub on 28 November 2020, 08:21:17 UTC
1 parent f919531
Raw File
Tip revision: e4fe303b8cca525e97d44e80c7e53bdab9dd9187 authored by Yurii Karabas on 28 November 2020, 08:21:17 UTC
bpo-42392: Remove loop parameter from asyncio.tasks and asyncio.subprocess (GH-23521)
Tip revision: e4fe303
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