Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 78ee3289e991882d803be4cb0dd6b4005f82cbb1 authored by R David Murray on 08 January 2014, 23:09:29 UTC
Fix verb tense in base64 docs, and the phrasing of a news entry.
Tip revision: 78ee328
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