Staging
v0.5.1
https://github.com/python/cpython
Revision 871dfc41d37b02a7af6eb03028edc6702f24fd1d authored by Antoine Pitrou on 28 April 2014, 11:07:06 UTC, committed by Antoine Pitrou on 28 April 2014, 11:07:06 UTC
1 parent 94ba146
Raw File
Tip revision: 871dfc41d37b02a7af6eb03028edc6702f24fd1d authored by Antoine Pitrou on 28 April 2014, 11:07:06 UTC
Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError.
Tip revision: 871dfc4
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