https://github.com/python/cpython
Raw File
Tip revision: d7bf7813713017185d6a461eb27a184636e608da authored by Senthil Kumaran on 10 April 2017, 02:49:34 UTC
Remove OSError related comment in urllib.request. (#1070)
Tip revision: d7bf781
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