[issue5994] help(marshal) just gives an outline; no help text provided.

2009-05-13 Thread R. David Murray
R. David Murray added the comment: I added 'variables' and 'functions' section to module docstring parallel to the way 'time' does it, and documented 'version' there. Checked in in r72597, r72598, and in r72599, r72600. -- resolution: -> fixed stage: patch review -> committed/rejected

[issue5994] help(marshal) just gives an outline; no help text provided.

2009-05-11 Thread Senthil
Senthil added the comment: David, should the marshal.version be explained as it is present in the docs? marshal.version Indicates the format that the module uses. Version 0 is the historical format, version 1 (added in Python 2.4) shares interned strings and version 2 (added in Python 2.5)

[issue5994] help(marshal) just gives an outline; no help text provided.

2009-05-11 Thread R. David Murray
R. David Murray added the comment: Patch attached for trunk based on 2.6.2 docs. I only included what felt like the essential parts of the module description. -- assignee: georg.brandl -> r.david.murray keywords: +patch nosy: +r.david.murray stage: -> patch review versions: +Python 3.

[issue5994] help(marshal) just gives an outline; no help text provided.

2009-05-11 Thread Senthil
New submission from Senthil : Help on built-in module marshal: NAME marshal FILE (built-in) MODULE DOCS http://docs.python.org/library/marshal FUNCTIONS dump(...) dumps(...) load(...) loads(...) DATA version = 2 -- assignee: georg.brand