Staging
v0.5.1
https://github.com/python/cpython
Revision 78abc9dcc2a854cd56c410377449dc50d7f46e3d authored by Georg Brandl on 27 October 2013, 08:41:57 UTC, committed by Georg Brandl on 27 October 2013, 08:41:57 UTC
1 parent 2d34f41
Raw File
Tip revision: 78abc9dcc2a854cd56c410377449dc50d7f46e3d authored by Georg Brandl on 27 October 2013, 08:41:57 UTC
Skip overzealous test for existence of the online license.html for pre-release versions.
Tip revision: 78abc9d
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