Staging
v0.8.1
Revision 5977a7989d49c3e095c7659a58267d87a17b12b1 authored by Mark Shannon on 02 December 2020, 13:31:40 UTC, committed by GitHub on 02 December 2020, 13:31:40 UTC
Make sure that line number is correct after a return, as defined by PEP 626.
1 parent 4e7a69b
Raw File
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