Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 3398dcb14f6d43bf1619f7c32fe8d888c354e6b2 authored by Ned Deily on 05 December 2017, 08:26:08 UTC
Bump to 3.6.4rc1
Tip revision: 3398dcb
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