Staging
v0.8.1
https://github.com/python/cpython
Revision e3083d3ad541432e2420869c7ed56fb9aff7a453 authored by Benjamin Peterson on 26 April 2014, 20:56:52 UTC, committed by Benjamin Peterson on 26 April 2014, 20:56:52 UTC
1 parent d4992dc
Raw File
Tip revision: e3083d3ad541432e2420869c7ed56fb9aff7a453 authored by Benjamin Peterson on 26 April 2014, 20:56:52 UTC
make operations on closed dumb databases raise a consistent exception (closes #19385)
Tip revision: e3083d3
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