https://github.com/python/cpython
Raw File
Tip revision: de54cf5be371a6f5e2e9f208c38def5f81d3ef02 authored by Pablo Galindo on 02 April 2024, 08:24:04 UTC
Python 3.11.9
Tip revision: de54cf5
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