[issue7078] struct help in the interpreter does not explain about the fmt option

2009-10-27 Thread Mark Dickinson
Mark Dickinson added the comment: Merged to release26-maint in r75805. -- status: open -> closed ___ Python tracker ___ ___ Python-bug

[issue7078] struct help in the interpreter does not explain about the fmt option

2009-10-08 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks for the patch, Gabriel! Applied to trunk in r75283. (I also fixed the indentation for the list of order/size/alignment specifiers.) Merged to py3k in r75284, release31-maint in r75285. Leaving open for the merge to release26-maint. -- assign

[issue7078] struct help in the interpreter does not explain about the fmt option

2009-10-07 Thread Gabriel Genellina
Gabriel Genellina added the comment: The module docstring (for _struct) already existed, but was not exposed as struct.__doc__ This patch fixes the problem; also, there was a missing format character ("?") -- keywords: +patch nosy: +gagenellina Added file: http://bugs.python.org/file1

[issue7078] struct help in the interpreter does not explain about the fmt option

2009-10-07 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> georg.brandl components: +Documentation nosy: +georg.brandl ___ Python tracker ___ ___ Py

[issue7078] struct help in the interpreter does not explain about the fmt option

2009-10-07 Thread Senthil Kumaran
New submission from Senthil Kumaran : >>> help(struct) mentions the functions which use fmt characters. The builtin help does not mention the fmt characters and their meaning. One should go online if he has to refer them. -- keywords: easy messages: 93709 nosy: orsenthil priority: low se