[issue7579] Patch to add docstrings to msvcrt

2010-08-23 Thread Brian Curtin
Brian Curtin added the comment: Committed to py3k in r84295. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___

[issue7579] Patch to add docstrings to msvcrt

2010-07-22 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: d...@python -> brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue7579] Patch to add docstrings to msvcrt

2010-07-22 Thread Mark Lawrence
Changes by Mark Lawrence : -- assignee: georg.brandl -> d...@python nosy: +d...@python ___ Python tracker ___ ___ Python-bugs-list mail

[issue7579] Patch to add docstrings to msvcrt

2010-01-12 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> patch review type: -> behavior ___ Python tracker ___ ___ Python-bugs-lis

[issue7579] Patch to add docstrings to msvcrt

2009-12-30 Thread Brian Curtin
Brian Curtin added the comment: Here is a patch for py3k. It uses the same contents as before but with changes to the str/bytes wording on getch_doc, putch_doc, and ungetch_doc. Includes updates to the msvcrt.rst file. Let me know if the wording seems correct (or if I left anything out). I went

[issue7579] Patch to add docstrings to msvcrt

2009-12-29 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Committed r77126 in trunk. I reflowed the text for getch(), so that help(msvcrt) displays nicely in a 80-chars-wide console (this was my "test") I was about to merge it into py3k, when I realized that the documentation should be updated to match the str

[issue7579] Patch to add docstrings to msvcrt

2009-12-29 Thread Georg Brandl
Georg Brandl added the comment: Patch looks good, can someone with the ability to test it please commit it? -- ___ Python tracker ___

[issue7579] Patch to add docstrings to msvcrt

2009-12-28 Thread Brian Curtin
Brian Curtin added the comment: I fixed up the bodies of the docstrings, removed the weird quotes around "pushed back" (copy/paste error), and got the heapmin/locking name fixed up. Thanks for taking a look at this. -- Added file: http://bugs.python.org/file15684/msvcrt_docstrings_v2.d

[issue7579] Patch to add docstrings to msvcrt

2009-12-27 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: This is a good idea. I have some comments though: - the second docstring says "heapmin" when it should describe "locking". - there are strange characters around "pushed back". Please use only ascii characters. - The body of the docstrings should be split

[issue7579] Patch to add docstrings to msvcrt

2009-12-26 Thread Brian Curtin
New submission from Brian Curtin : Patch to provide docstrings throughout the msvcrt module. -- assignee: georg.brandl components: Documentation, Windows files: msvcrt_docstrings.diff keywords: patch messages: 96893 nosy: brian.curtin, georg.brandl severity: normal status: open title: Pa