Staging
v0.5.1
https://github.com/python/cpython
Revision 291c9d4f74f3c7c57ae18e1aca617206795a090d authored by Miss Islington (bot) on 25 April 2018, 18:32:52 UTC, committed by GitHub on 25 April 2018, 18:32:52 UTC
(cherry picked from commit e9d9494d6b2a5e0c2d48d22c7f0d5e95504b4f7e)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 53d36cc
Raw File
Tip revision: 291c9d4f74f3c7c57ae18e1aca617206795a090d authored by Miss Islington (bot) on 25 April 2018, 18:32:52 UTC
bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564)
Tip revision: 291c9d4
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