https://github.com/python/cpython
Raw File
Tip revision: b82f61290b21ae0096318a2821ef75b57f77b661 authored by Zackery Spytz on 27 November 2018, 04:02:22 UTC
Include the highest pickle protocol in a couple of tests
Tip revision: b82f612
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