Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: fa7193286099f8e4164f4a795afd5ad4a8e229df authored by Larry Hastings on 20 December 2015, 03:31:10 UTC
Release bump for Python 3.4.4 final.
Tip revision: fa71932
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