Staging
v0.5.1
https://github.com/python/cpython
Revision 8dfb4576a9a74a35f71a2f68a7236f2f0b1a7e63 authored by Yury Selivanov on 21 February 2014, 23:30:53 UTC, committed by Yury Selivanov on 21 February 2014, 23:30:53 UTC
1 parent e2df3ea
Raw File
Tip revision: 8dfb4576a9a74a35f71a2f68a7236f2f0b1a7e63 authored by Yury Selivanov on 21 February 2014, 23:30:53 UTC
inspect.signature: Check for function-like objects before builtins. Issue #17159
Tip revision: 8dfb457
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