#24476: Allow using set_script_prefix as a contextmanager
------------------------------------------------+------------------------
               Reporter:  timgraham             |          Owner:  nobody
                   Type:  Cleanup/optimization  |         Status:  new
              Component:  Core (URLs)           |        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                     |
------------------------------------------------+------------------------
 It would be useful if `set_script_prefix()` could be used as a
 contextmanager in addition to as a regular function. That would allow
 replacing this redundant pattern in tests:

 {{{
 set_script_prefix('/beverages/')
 try:
     self.assertEqual(pf.get_absolute_url(), '/beverages/tea/')
 finally:
     clear_script_prefix()
 }}}

 with:

 {{{
 with set_script_prefix('/beverages/'):
     self.assertEqual(pf.get_absolute_url(), '/beverages/tea/')
 }}}

--
Ticket URL: <https://code.djangoproject.com/ticket/24476>
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 [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/052.9b6c224d468a12831e8b6b934999389d%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to