Staging
v0.5.1
https://github.com/python/cpython
Revision 4750fa8369407a2a77d40f5aa3e681e80ca08f42 authored by R David Murray on 18 September 2013, 01:28:17 UTC, committed by R David Murray on 18 September 2013, 01:28:17 UTC
2 parent s 9353494 + fb9dc0b
Raw File
Tip revision: 4750fa8369407a2a77d40f5aa3e681e80ca08f42 authored by R David Murray on 18 September 2013, 01:28:17 UTC
Merge #14984: On POSIX, enforce permissions when reading default .netrc.
Tip revision: 4750fa8
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