https://github.com/python/cpython
Raw File
Tip revision: 317314165a0b98c851c7774150f8121ad7e99254 authored by Pablo Galindo on 31 May 2021, 11:29:21 UTC
Python 3.10.0b2
Tip revision: 3173141
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