Staging
v0.5.1
https://github.com/python/cpython
Revision 06a3c8ae82c76bd0ea21d3860a65bd6ece6ab72e authored by Daniel Stutzbach on 03 September 2010, 11:11:43 UTC, committed by Daniel Stutzbach on 03 September 2010, 11:11:43 UTC
1 parent 2d44449
Raw File
Tip revision: 06a3c8ae82c76bd0ea21d3860a65bd6ece6ab72e authored by Daniel Stutzbach on 03 September 2010, 11:11:43 UTC
fromfd exists on Windows now
Tip revision: 06a3c8a
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