Staging
v0.5.1
https://github.com/python/cpython
Revision 410b730c205133315c604350f4bdc2345588b397 authored by Miss Islington (bot) on 01 June 2020, 16:07:32 UTC, committed by GitHub on 01 June 2020, 16:07:32 UTC
(cherry picked from commit db64f12e4deda2abbafb6d2bd5c06762fca991ff)

Co-authored-by: Mark Shannon <mark@hotpy.org>
1 parent a169961
Raw File
Tip revision: 410b730c205133315c604350f4bdc2345588b397 authored by Miss Islington (bot) on 01 June 2020, 16:07:32 UTC
Make sure that keyword arguments are merged into the arguments dictionary when dict unpacking and keyword arguments are interleaved. (GH-20553) (GH-20569)
Tip revision: 410b730
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