https://github.com/python/cpython
Raw File
Tip revision: 49965601d6afedafe47cc85556d99b7a24981051 authored by Pablo Galindo on 24 August 2023, 12:45:33 UTC
Python 3.10.13
Tip revision: 4996560
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