Staging
v0.5.1
https://github.com/python/cpython
Revision 268e1fbf215fb17e1ebed793190457dab6d182cf authored by Ned Deily on 17 June 2017, 08:48:35 UTC, committed by Ned Deily on 17 June 2017, 08:48:35 UTC
1 parent 8c5483e
Raw File
Tip revision: 268e1fbf215fb17e1ebed793190457dab6d182cf authored by Ned Deily on 17 June 2017, 08:48:35 UTC
Version bump to 3.6.2rc1
Tip revision: 268e1fb
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