Staging
v0.5.1
https://github.com/python/cpython
Revision c2d2c720d48feaa866ff19a100102af2b33d012f authored by Éric Araujo on 12 August 2011, 17:52:43 UTC, committed by Éric Araujo on 12 August 2011, 17:52:43 UTC
2 parent s 8a3b657 + 1bf5b6a
Raw File
Tip revision: c2d2c720d48feaa866ff19a100102af2b33d012f authored by Éric Araujo on 12 August 2011, 17:52:43 UTC
Branch merge
Tip revision: c2d2c72
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