Staging
v0.5.1
https://github.com/python/cpython
Revision b77bf326852f97f125ff57810a5f9663209414a7 authored by Benjamin Peterson on 01 March 2014, 15:31:36 UTC, committed by Benjamin Peterson on 01 March 2014, 15:31:36 UTC
1 parent 4f8e4c2
Raw File
Tip revision: b77bf326852f97f125ff57810a5f9663209414a7 authored by Benjamin Peterson on 01 March 2014, 15:31:36 UTC
fix test on debug builds (closes #20731)
Tip revision: b77bf32
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