Staging
v0.8.1
https://github.com/python/cpython
Revision 71ea65feed9f08fa2440ae6e2aa85b41241e005c authored by Larry Hastings on 09 August 2015, 10:41:04 UTC, committed by Larry Hastings on 09 August 2015, 10:41:04 UTC
1 parent f7ae14f
Raw File
Tip revision: 71ea65feed9f08fa2440ae6e2aa85b41241e005c authored by Larry Hastings on 09 August 2015, 10:41:04 UTC
Release bump for Python 3.5.0rc1.
Tip revision: 71ea65f
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