From 40714af07177cbb4de484b866a2f01fe72d42770 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 8 Oct 2009 15:59:20 +0000 Subject: Merged revisions 75283 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75283 | mark.dickinson | 2009-10-08 16:54:10 +0100 (Thu, 08 Oct 2009) | 4 lines Issue #7078: _struct.__doc__ was being ignored. Import it into struct. Also add description of '?' struct format character. Thanks Gabriel Genellina for the patch. ........ --- Lib/struct.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/struct.py') diff --git a/Lib/struct.py b/Lib/struct.py index 3784c055be..b022355c18 100644 --- a/Lib/struct.py +++ b/Lib/struct.py @@ -1,2 +1,3 @@ from _struct import * from _struct import _clearcache +from _struct import __doc__ -- cgit v1.2.1