Staging
v0.5.1
https://github.com/python/cpython
Revision 68f68fa423739802fce37589ee77683c42ddb933 authored by Richard Levasseur on 21 November 2020, 19:56:24 UTC, committed by GitHub on 21 November 2020, 19:56:24 UTC
1 parent ea97eba
Raw File
Tip revision: 68f68fa423739802fce37589ee77683c42ddb933 authored by Richard Levasseur on 21 November 2020, 19:56:24 UTC
Clarify that Set._from_iterable is not required to be a classmethod. (GH-23272)
Tip revision: 68f68fa
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