Staging
v0.5.1
https://github.com/python/cpython
Revision 5456e78f4593edc277ab72fb9a9db1ebae7d4c2d authored by Jason R. Coombs on 19 October 2020, 22:06:05 UTC, committed by GitHub on 19 October 2020, 22:06:05 UTC
Co-authored-by: Christian Heimes <christian@python.org>
1 parent 33242a9
Raw File
Tip revision: 5456e78f4593edc277ab72fb9a9db1ebae7d4c2d authored by Jason R. Coombs on 19 October 2020, 22:06:05 UTC
bpo-16396: Allow wintypes to be imported on non-Windows systems. (GH-21394)
Tip revision: 5456e78
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