Changes between Initial Version and Version 2 of Ticket #31128
- Timestamp:
- Dec 31, 2019, 10:38:06 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31128
- Property Cc added
- Property Component Uncategorized → Template system
- Property Has patch set
- Property Owner changed from to
- Property Triage Stage Unreviewed → Accepted
- Property Status new → assigned
- Property Summary Bug in simple and inclusion tag parsing. → Custom template tags raise TemplateSyntaxError when keyword-only arguments with defaults are provided.
- Property Type Uncategorized → Bug
-
Ticket #31128 – Description
initial v2 3 3 {{{ 4 4 @register.simple_tag 5 def hello(*, *greeting='hello'):5 def hello(*, greeting='hello'): 6 6 return f'{greeting} world' 7 7 }}} … … 19 19 #tag 20 20 @register.simple_tag 21 def hi(*, *greeting):21 def hi(*, greeting): 22 22 return f'{greeting} world' 23 23 }}}