Changes between Initial Version and Version 1 of Ticket #6934
- Timestamp:
- Apr 2, 2008, 12:12:52 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6934
- Property Patch needs improvement set
- Property Owner changed from to
- Property Triage Stage Unreviewed → Accepted
- Property Summary [PATCH] django.core.urlresolvers.reverse fails sometimes. → django.core.urlresolvers.reverse fails sometimes.
-
Ticket #6934 – Description
initial v1 7 7 ...django.core.urlresolvers.reverse will fail, because of following reasons: 8 8 9 - To replace the groups re.sub with r'\(([^)]+)\)'is used, which matches only until the first ')', doesn't matter how much groups are nested.9 - To replace the groups re.sub with {{{r'\(([^)]+)\)'}}} is used, which matches only until the first ')', doesn't matter how much groups are nested. 10 10 - All groups which are no named groups are assumed to be positional groups, regardless if they might be not-matching, look-ahead or look-behind groups.