Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 2eda1b78f9b3d03260445dc1bdbae477cb3e5885 authored by Andrew M. Kuchling on 03 July 2006, 14:16:09 UTC
[Bug #1511911] Clarify description of optional arguments to sorted()
Tip revision: 2eda1b7
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