Staging
v0.5.1
https://github.com/python/cpython
Revision dec1a45fd1b37d4688fa5846a0d32a2393808fb1 authored by Yury Selivanov on 19 February 2014, 03:27:48 UTC, committed by Yury Selivanov on 19 February 2014, 03:27:48 UTC
Thanks to Vajrasky Kok for discovering some of them.
1 parent 74d519f
Raw File
Tip revision: dec1a45fd1b37d4688fa5846a0d32a2393808fb1 authored by Yury Selivanov on 19 February 2014, 03:27:48 UTC
asyncio: Fix spelling and typos.
Tip revision: dec1a45
struct.py
__all__ = [
    # Functions
    'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',
    'iter_unpack',

    # Classes
    'Struct',

    # Exceptions
    'error'
    ]

from _struct import *
from _struct import _clearcache
from _struct import __doc__
back to top