Staging
v0.8.1
https://github.com/python/cpython
Revision 735ae8d139a673b30b321dc10acfd3d14f0d633b authored by Nathaniel J. Smith on 06 January 2018, 07:15:34 UTC, committed by Benjamin Peterson on 06 January 2018, 07:15:34 UTC
This module has never been enabled by default, never worked correctly
on x86-64, and caused ABI problems that caused C extension
compatibility. See bpo-29137 for details/discussion.
1 parent 502d551
Raw File
Tip revision: 735ae8d139a673b30b321dc10acfd3d14f0d633b authored by Nathaniel J. Smith on 06 January 2018, 07:15:34 UTC
bpo-29137: Remove fpectl module (#4789)
Tip revision: 735ae8d
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