Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: d8c174afd5842e95627d6ee13dadc3d690f9b5af authored by Ned Deily on 19 September 2017, 03:18:48 UTC
Bump to 3.6.3rc1
Tip revision: d8c174a
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