Staging
v0.5.1
https://github.com/python/cpython
Revision 9dc4cad9793cd1e81d2bbc40746b55986b745309 authored by Senthil Kumaran on 11 August 2011, 01:24:37 UTC, committed by Senthil Kumaran on 11 August 2011, 01:24:37 UTC
1 parent 962fed9
Raw File
Tip revision: 9dc4cad9793cd1e81d2bbc40746b55986b745309 authored by Senthil Kumaran on 11 August 2011, 01:24:37 UTC
News item for Issue10087.
Tip revision: 9dc4cad
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