Staging
v0.5.1
https://github.com/python/cpython
Revision 32e1771daf0ebbde326d91dede4b9cfae6e74f27 authored by R. David Murray on 18 December 2010, 16:39:06 UTC, committed by R. David Murray on 18 December 2010, 16:39:06 UTC
1 parent 77570e2
Raw File
Tip revision: 32e1771daf0ebbde326d91dede4b9cfae6e74f27 authored by R. David Murray on 18 December 2010, 16:39:06 UTC
#10728: the default for printing help is sys.stdout, not stderr.
Tip revision: 32e1771
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