https://github.com/python/cpython
Raw File
Tip revision: cc12888f9b4b69247f342fe1304984c3eb3d9647 authored by Pablo Galindo on 01 March 2021, 16:47:53 UTC
Remove unused suspicious rule in the docs
Tip revision: cc12888
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