https://github.com/python/cpython
Raw File
Tip revision: 2e91dba437fe5c56c6f8213294eeb7a704760509 authored by Pablo Galindo on 08 December 2021, 22:23:08 UTC
Python 3.11.0a3
Tip revision: 2e91dba
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