Staging
v0.5.1
https://github.com/python/cpython
Revision 19b1d50732aace91208bb3a7ab1fcbace9883bae authored by Vinay Sajip on 28 February 2012, 19:02:43 UTC, committed by Vinay Sajip on 28 February 2012, 19:02:43 UTC
1 parent ff4b7bf
Raw File
Tip revision: 19b1d50732aace91208bb3a7ab1fcbace9883bae authored by Vinay Sajip on 28 February 2012, 19:02:43 UTC
Added additional diagnostics to help with #12151.
Tip revision: 19b1d50
struct.py
__all__ = [
    # Functions
    'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',

    # Classes
    'Struct',

    # Exceptions
    'error'
    ]

from _struct import *
from _struct import _clearcache
from _struct import __doc__
back to top