[issue20872] dbm/gdbm/ndbm close methods are not document

2014-06-25 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Thanks, David and Berker. -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue20872] dbm/gdbm/ndbm close methods are not document

2014-06-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset de44bc26a00a by Jesus Cea in branch '2.7': Closes #20872: dbm/gdbm/ndbm close methods are not documented http://hg.python.org/cpython/rev/de44bc26a00a New changeset cf156cfb12e7 by Jesus Cea in branch '3.3': Closes #20872: dbm/gdbm/ndbm close method

[issue20872] dbm/gdbm/ndbm close methods are not document

2014-05-12 Thread Berker Peksag
Changes by Berker Peksag : -- keywords: +patch nosy: +berker.peksag stage: needs patch -> patch review versions: -Python 3.3 Added file: http://bugs.python.org/file35226/issue20872.diff ___ Python tracker

[issue20872] dbm/gdbm/ndbm close methods are not document

2014-05-10 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> docs@python components: +Documentation keywords: +easy nosy: +docs@python stage: -> needs patch type: -> enhancement ___ Python tracker _

[issue20872] dbm/gdbm/ndbm close methods are not document

2014-03-08 Thread R. David Murray
New submission from R. David Murray: We just added context manager support to dbm to close the object automatically, but the 'close' method that gets called is not documented for any of the dbm objects. Since it is part of the public API (it is shown in the example), I think it should be. --