https://github.com/python/cpython
Raw File
Tip revision: 8d32a5c8c4e9c90b0a21e8b2fa0cd567465ced2b authored by Pablo Galindo on 06 May 2022, 22:55:59 UTC
Update the SOURCE_URI in pyspecific.py to point to the new branch
Tip revision: 8d32a5c
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