Staging
v0.5.1
https://github.com/python/cpython
Revision 490055a1673b524da2ebe2312f072aba2a826036 authored by Serhiy Storchaka on 01 March 2015, 08:03:02 UTC, committed by Serhiy Storchaka on 01 March 2015, 08:03:02 UTC
1 parent 50adb9f
Raw File
Tip revision: 490055a1673b524da2ebe2312f072aba2a826036 authored by Serhiy Storchaka on 01 March 2015, 08:03:02 UTC
Issue #20204: Deprecation warning is now raised for builtin type without the
Tip revision: 490055a
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