mirror of
https://github.com/python/cpython.git
synced 2025-07-25 04:04:13 +00:00
Merged revisions 81947-81950,81955-81956 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r81947 | mark.dickinson | 2010-06-12 16:17:02 +0100 (Sat, 12 Jun 2010) | 3 lines Issue #8973: Add __all__ to struct module, so that help(struct) correctly displays information for the struct.Struct class. ........ r81948 | mark.dickinson | 2010-06-12 16:19:23 +0100 (Sat, 12 Jun 2010) | 1 line Remove accidental (yet-to-be-reviewed) docstring changes included in r81947. ........ r81949 | mark.dickinson | 2010-06-12 16:43:45 +0100 (Sat, 12 Jun 2010) | 1 line Issue #8973: Improve struct module docstrings. ........ r81950 | mark.dickinson | 2010-06-12 17:30:53 +0100 (Sat, 12 Jun 2010) | 1 line More struct module docs and docstring tweaks. ........ r81955 | mark.dickinson | 2010-06-12 19:20:47 +0100 (Sat, 12 Jun 2010) | 1 line Issue #8469: add standard sizes to struct docs table. ........ r81956 | mark.dickinson | 2010-06-12 19:37:54 +0100 (Sat, 12 Jun 2010) | 2 lines Issue #8469: Reorder struct module sections for clarity; other minor tweaks. ........
This commit is contained in:
parent
80971d4d1c
commit
f9e091ae2d
4 changed files with 191 additions and 156 deletions
|
@ -1,3 +1,14 @@
|
|||
__all__ = [
|
||||
# Functions
|
||||
'calcsize', 'pack', 'unpack', 'unpack', 'unpack_from',
|
||||
|
||||
# Classes
|
||||
'Struct',
|
||||
|
||||
# Exceptions
|
||||
'error'
|
||||
]
|
||||
|
||||
from _struct import *
|
||||
from _struct import _clearcache
|
||||
from _struct import __doc__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue