Staging
v0.5.1
https://github.com/python/cpython
Revision 304019340194baf5ae5f2893ad9fd70647374c29 authored by Brian Curtin on 30 April 2011, 03:20:57 UTC, committed by Brian Curtin on 30 April 2011, 03:20:57 UTC
2 parent s be5dbeb + 73365dd
Raw File
Tip revision: 304019340194baf5ae5f2893ad9fd70647374c29 authored by Brian Curtin on 30 April 2011, 03:20:57 UTC
Fix #11961. Document STARTUPINFO and creation flag options.
Tip revision: 3040193
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