Staging
v0.5.1
https://github.com/python/cpython
Revision ffaa692a9ef80979021fb68cb2eed7596331ea51 authored by Georg Brandl on 30 January 2011, 14:05:04 UTC, committed by Georg Brandl on 30 January 2011, 14:05:04 UTC
1 parent d6e19c3
Raw File
Tip revision: ffaa692a9ef80979021fb68cb2eed7596331ea51 authored by Georg Brandl on 30 January 2011, 14:05:04 UTC
Tagging release 3.2 rc 2.
Tip revision: ffaa692
struct.py
__all__ = [
    # Functions
    'calcsize', 'pack', 'unpack', 'unpack', 'unpack_from',

    # Classes
    'Struct',

    # Exceptions
    'error'
    ]

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