Staging
v0.5.1
https://github.com/python/cpython
Revision 4d0296649a48ff9dbc290394ff656cf3dea86107 authored by Eric V. Smith on 28 January 2018, 14:25:45 UTC, committed by GitHub on 28 January 2018, 14:25:45 UTC
1 parent f0a95f2
Raw File
Tip revision: 4d0296649a48ff9dbc290394ff656cf3dea86107 authored by Eric V. Smith on 28 January 2018, 14:25:45 UTC
Add example for PEP 557. (GH-5383)
Tip revision: 4d02966
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