Staging
v0.8.1
https://github.com/python/cpython
Revision e5f6aba872e66bfd86eb592214696a519cded197 authored by Larry Hastings on 01 November 2019, 23:02:34 UTC, committed by Larry Hastings on 01 November 2019, 23:02:34 UTC
1 parent 9f9afc1
Raw File
Tip revision: e5f6aba872e66bfd86eb592214696a519cded197 authored by Larry Hastings on 01 November 2019, 23:02:34 UTC
Version bump for 3.5.9 final.
Tip revision: e5f6aba
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