https://github.com/python/cpython
Raw File
Tip revision: 9da28d2b3429d1bb30e082e4c9cb544d81fdae20 authored by Ned Deily on 28 June 2021, 16:51:36 UTC
3.7.11
Tip revision: 9da28d2
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