Staging
v0.5.1
https://github.com/python/cpython
Revision 311101f7b6d71d634382cdd943ef3dfcb402aa93 authored by Ned Deily on 26 September 2018, 06:35:30 UTC, committed by Ned Deily on 26 September 2018, 06:35:30 UTC
1 parent adf4932
Raw File
Tip revision: 311101f7b6d71d634382cdd943ef3dfcb402aa93 authored by Ned Deily on 26 September 2018, 06:35:30 UTC
3.6.7rc1
Tip revision: 311101f
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