diff options
| author | Mark Dickinson <dickinsm@gmail.com> | 2009-10-08 15:54:10 (GMT) | 
|---|---|---|
| committer | Mark Dickinson <dickinsm@gmail.com> | 2009-10-08 15:54:10 (GMT) | 
| commit | 3d830828defeabafe50ae5b8ba2298b7cf486b4f (patch) | |
| tree | c93668a2bc94de5a8a1882629d0834f79b4b9216 /Lib/struct.py | |
| parent | a5b642c9332333f78876f8ae5ccde8d055fda5ea (diff) | |
| download | cpython-3d830828defeabafe50ae5b8ba2298b7cf486b4f.zip cpython-3d830828defeabafe50ae5b8ba2298b7cf486b4f.tar.gz cpython-3d830828defeabafe50ae5b8ba2298b7cf486b4f.tar.bz2  | |
Issue #7078:  _struct.__doc__ was being ignored.  Import it into struct.
Also add description of '?' struct format character.  Thanks Gabriel
Genellina for the patch.
Diffstat (limited to 'Lib/struct.py')
| -rw-r--r-- | Lib/struct.py | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/struct.py b/Lib/struct.py index 3784c05..b022355 100644 --- a/Lib/struct.py +++ b/Lib/struct.py @@ -1,2 +1,3 @@  from _struct import *  from _struct import _clearcache +from _struct import __doc__  | 
