Staging
v0.8.1
https://github.com/python/cpython
Revision 708f472dd92f4f46c27ace710492da65da4a3319 authored by Miss Islington (bot) on 06 February 2020, 08:45:18 UTC, committed by GitHub on 06 February 2020, 08:45:18 UTC
(cherry picked from commit 54b4f14712b9350f11c983f1c8ac47a3716958a7)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 927d3aa
Raw File
Tip revision: 708f472dd92f4f46c27ace710492da65da4a3319 authored by Miss Islington (bot) on 06 February 2020, 08:45:18 UTC
bpo-38149: Call sys.audit() only once per call for glob.glob(). (GH-18360)
Tip revision: 708f472
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