Staging
v0.5.1
https://github.com/python/cpython
Revision 86f093f71a594dcaf21b67ba13dda72863e9bde9 authored by Raymond Hettinger on 21 February 2019, 17:12:15 UTC, committed by GitHub on 21 February 2019, 17:12:15 UTC
1 parent 7463884
Raw File
Tip revision: 86f093f71a594dcaf21b67ba13dda72863e9bde9 authored by Raymond Hettinger on 21 February 2019, 17:12:15 UTC
bpo-36060: Document how collections.ChainMap() determines iteration order (GH-11969)
Tip revision: 86f093f
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