Staging
v0.5.1
https://github.com/python/cpython
Revision 7a05113ccf76b077b138d40794e52f6881a57c4c authored by Petri Lehtinen on 23 February 2013, 21:07:39 UTC, committed by Petri Lehtinen on 23 February 2013, 21:08:07 UTC
1 parent 905b648
Raw File
Tip revision: 7a05113ccf76b077b138d40794e52f6881a57c4c authored by Petri Lehtinen on 23 February 2013, 21:07:39 UTC
Issue #16121: Fix line number accounting in shlex
Tip revision: 7a05113
struct.py
__all__ = [
    # Functions
    'calcsize', 'pack', 'pack_into', 'unpack', 'unpack_from',

    # Classes
    'Struct',

    # Exceptions
    'error'
    ]

from _struct import *
from _struct import _clearcache
from _struct import __doc__
back to top