Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 226af70a59df013eaa58b80e01f430f13fa998d3 authored by Georg Brandl on 18 March 2012, 06:34:49 UTC
Bump to 3.2.3rc2.
Tip revision: 226af70
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