Staging
v0.5.1
https://github.com/python/cpython
Revision 8f0a1d0f285536c9262d30b20f5f1becfe103309 authored by Serhiy Storchaka on 06 September 2014, 19:47:58 UTC, committed by Serhiy Storchaka on 06 September 2014, 19:47:58 UTC
First letter no longer is stripped from the "status" key in
the result of Treeview.heading().
1 parent c70386e
Raw File
Tip revision: 8f0a1d0f285536c9262d30b20f5f1becfe103309 authored by Serhiy Storchaka on 06 September 2014, 19:47:58 UTC
Issue #22226: Added private function _splitdict() in the Tkinter module.
Tip revision: 8f0a1d0
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