Staging
v0.8.1
https://github.com/python/cpython
Revision ac1a2489681d16ecc92985aefbd944e3b70fd26f authored by Nick Coghlan on 18 October 2013, 12:39:50 UTC, committed by Nick Coghlan on 18 October 2013, 12:39:50 UTC
Previously, the -R option would be specified multiple times
if PYTHONHASHSEED was set.
1 parent ef23f18
Raw File
Tip revision: ac1a2489681d16ecc92985aefbd944e3b70fd26f authored by Nick Coghlan on 18 October 2013, 12:39:50 UTC
Close #19284: Handle -R properly in flag helper
Tip revision: ac1a248
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