Staging
v0.5.1
Revision 623ed6171eae35af7fd2e804dfd9c832c05c5d48 authored by Victor Stinner on 21 January 2020, 18:25:32 UTC, committed by GitHub on 21 January 2020, 18:25:32 UTC
Rename posix_putenv_garbage to putenv_dict.
1 parent 56cd371
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