Staging
v0.5.1
https://github.com/python/cpython
Revision a83a6a3275f7dc748db3a237bbf4b05fcf76a85f authored by Serhiy Storchaka on 16 November 2016, 18:02:44 UTC, committed by Serhiy Storchaka on 16 November 2016, 18:02:44 UTC
require ASCII right argument and assert this condition in debug build.
1 parent ecbca35
Raw File
Tip revision: a83a6a3275f7dc748db3a237bbf4b05fcf76a85f authored by Serhiy Storchaka on 16 November 2016, 18:02:44 UTC
Issue #28701: _PyUnicode_EqualToASCIIId and _PyUnicode_EqualToASCIIString now
Tip revision: a83a6a3
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