#27579: Alias Python 3's assertion names on Python 2 in SimpleTestCase
------------------------------------------------+------------------------
               Reporter:  Tim Graham            |          Owner:  nobody
                   Type:  Cleanup/optimization  |         Status:  new
              Component:  Testing framework     |        Version:  master
               Severity:  Normal                |       Keywords:
           Triage Stage:  Unreviewed            |      Has patch:  0
    Needs documentation:  0                     |    Needs tests:  0
Patch needs improvement:  0                     |  Easy pickings:  0
                  UI/UX:  0                     |
------------------------------------------------+------------------------
 To minimize the usage of `six` so there's less changes to make when
 dropping Python 2, the following Python 3 to Python 2 aliases could be
 added:
 {{{
 assertCountEqual = unittest.TestCase.assertItemsEqual
 assertNotRegex = unittest.TestCase.assertNotRegexpMatches
 assertRaisesRegex = unittest.TestCase.assertRaisesRegexp
 assertRegex = unittest.TestCase.assertRegexpMatches
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/27579>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.85e0fbd6af665c00461d5f319cb55c43%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to