[issue11090] Doc errors for unittest in Python 3.1

2011-03-11 Thread Ezio Melotti
Ezio Melotti added the comment: addCleanup/doCleanups/startTestRun/stopTestRun are in 3.1 too and now they are documented as new in 3.1. I also removed the versionchanged note for __iter__ (0f9e5042907c). Test discovery, --failfast, --catch, --buffer are new in 3.2 and not documented on 3.1.

[issue11090] Doc errors for unittest in Python 3.1

2011-02-06 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file20657/fix-11090.diff ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue11090] Doc errors for unittest in Python 3.1

2011-02-06 Thread Éric Araujo
Éric Araujo added the comment: It looks like the doc snippets are actually new in 3.1, so we should not remove them but just fix the versionadded. The change I wrongly added is the part about command-line use. That can go. -- ___ Python tracker <

[issue11090] Doc errors for unittest in Python 3.1

2011-02-06 Thread Éric Araujo
Éric Araujo added the comment: Hm, my patch removes too much. The part that was mistakenly added by me is the command-line interface doc, but I also removed other parts for things noted with versionadded: 3.2. Those indications are wrong: They were noted added in 2.7 before r79167 (Ezio).

[issue11090] Doc errors for unittest in Python 3.1

2011-02-04 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +docs@python ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11090] Doc errors for unittest in Python 3.1

2011-02-02 Thread Éric Araujo
Éric Araujo added the comment: Patch to remove the section about command-line usage + other things new in 3.2. -- keywords: +patch Added file: http://bugs.python.org/file20657/fix-11090.diff ___ Python tracker ___

[issue11090] Doc errors for unittest in Python 3.1

2011-02-02 Thread Michael Foord
Michael Foord added the comment: This incorrect section on unittest command line features was added by Eric according to svn blame. -- nosy: +eric.araujo ___ Python tracker ___

[issue11090] Doc errors for unittest in Python 3.1

2011-02-01 Thread Michael Foord
New submission from Michael Foord : Looks like some unittest doc changes got incorrectly backported to Python 3.1. For example the command line features using -m are new in 3.2 and don't work with 3.1: http://docs.python.org/py3k/library/unittest.html#command-line-interface -- assigne