Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 5889129571492a589b98f04d3bca6cc86bc43901 authored by Benjamin Peterson on 13 November 2010, 17:28:56 UTC
bump to 3.1.3rc1
Tip revision: 5889129
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