Staging
v0.8.1
Revision 43ba3545991691403d1b4ec1d04e66053c2ddf36 authored by Éric Araujo on 01 September 2011, 01:19:30 UTC, committed by Éric Araujo on 01 September 2011, 01:19:30 UTC
1 parent 4058211
Raw File
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