Opened 9 years ago
Last modified 8 years ago
#26621 closed Bug
simplify_regex handles named capture groups incorrectly — at Version 1
Reported by: | Alex Rothberg | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admindocs | Version: | 1.9 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | yes |
Easy pickings: | no | UI/UX: | no |
Description (last modified by )
For example using a regex from Django Rest Framework docs:
>>> from django.contrib.admindocs.views import simplify_regex >>> simplify_regex(r'^(?P<version>(v1|v2))/bookings/(?P<pk>[0-9]+)/$') '/<version>)/bookings/<pk>/'
The closing parenthesis in the output is unexpected.
Escaping the /
does not seem to help.
Change History (1)
comment:1 by , 8 years ago
Component: | Uncategorized → contrib.admindocs |
---|---|
Description: | modified (diff) |
Summary: | simplify_regex having problems with named capture groups → simplify_regex handles named capture groups incorrectly |
Triage Stage: | Unreviewed → Accepted |
Type: | Uncategorized → Bug |
Note:
See TracTickets
for help on using tickets.