[issue22838] Convert re tests to unittest

2014-12-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue22838] Convert re tests to unittest

2014-12-01 Thread Roundup Robot
Roundup Robot added the comment: New changeset 21a7a92f4d0c by Serhiy Storchaka in branch '3.4': Issue #22838: All test_re tests now work with unittest test discovery. https://hg.python.org/cpython/rev/21a7a92f4d0c New changeset 258ee94b5bac by Serhiy Storchaka in branch 'default': Issue #22838:

[issue22838] Convert re tests to unittest

2014-11-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Regenerated patch. Hope this will help. -- Added file: http://bugs.python.org/file37199/re_tests.patch ___ Python tracker ___

[issue22838] Convert re tests to unittest

2014-11-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: This needs side-by-side review but there is no review button. Does anyone know why? -- nosy: +terry.reedy ___ Python tracker ___ __

[issue22838] Convert re tests to unittest

2014-11-10 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Current re tests consists of two parts. One part use unittest and other part import test cases from Lib/test/re_tests.py, checks conditions and prints messages to stdout if they are false. Proposed patch converts all test_re to using unittest. --