Changes between Initial Version and Version 6 of Ticket #28135
- Timestamp:
- Aug 8, 2021, 7:55:54 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28135
- Property Component Uncategorized → contrib.admindocs
- Property Triage Stage Unreviewed → Accepted
- Property Type Uncategorized → Cleanup/optimization
- Property Easy pickings set
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #28135 – Description
initial v6 1 1 While using Django REST Framework's Schema generator, I found out they're using `simplify_regex()`; however, current version has a few shortcomings, namely non-capturing groups are broken. 2 3 I added a pull request (see https://github.com/django/django/pull/8414) which fixes this problems, it also is faster and handles many more regex patterns. I also extended the `test_simplify_regex` test.