https://github.com/python/cpython
Revision aac875fa2f03cab61ceeaa2621c4c5534c7bcfc2 authored by Serhiy Storchaka on 12 March 2017, 19:52:17 UTC, committed by GitHub on 12 March 2017, 19:52:17 UTC
if attributes "encoding" or "errors" of sys.stdin or sys.stdout are not set or are not strings.
1 parent c609484
Raw File
Tip revision: aac875fa2f03cab61ceeaa2621c4c5534c7bcfc2 authored by Serhiy Storchaka on 12 March 2017, 19:52:17 UTC
[3.6] bpo-8256: Fixed possible failing or crashing input() (#641)
Tip revision: aac875f
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