Staging
v0.8.1
https://github.com/python/cpython
Revision 86684319d3dad8e1a7b0559727a48e0bc50afb01 authored by Renato Cunha on 29 November 2020, 18:23:15 UTC, committed by GitHub on 29 November 2020, 18:23:15 UTC
* bpo-42406: Fix whichmodule() with multiprocessing

Signed-off-by: Renato L. de F. Cunha <renatoc@br.ibm.com>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
1 parent 86150d3
Raw File
Tip revision: 86684319d3dad8e1a7b0559727a48e0bc50afb01 authored by Renato Cunha on 29 November 2020, 18:23:15 UTC
bpo-42406: Fix whichmodule() with multiprocessing (GH-23403)
Tip revision: 8668431
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