summaryrefslogtreecommitdiff
path: root/django/template/base.py
AgeCommit message (Expand)Author
2026-02-10[5.2.x] Fixed #36903 -- Fixed further NameErrors when inspecting functions wi...93578237
2025-12-01[5.2.x] Fixed #36712 -- Evaluated type annotations lazily in template tag reg...Jacob Walls
2024-11-28Fixed #35897 -- Removed unnecessary escaping in template's get_exception_info().Klaas van Schelven
2024-10-10Fixed #35789 -- Improved the error message raised when the tag must be first ...ekinertac
2024-09-17Fixed #35735 -- Enabled template access to methods and properties of classes ...Fabian Braun
2023-10-02Fixed #34883 -- Allowed template tags to set extra data on templates.Carlton Gibson
2023-08-02Removed unneeded escapes in regexes.Mariusz Felisiak
2023-05-18Avoided parallel assignment in template classes.Adam Johnson
2023-02-08Refs #7430 -- Removed broken Template.__iter__().Anders Hovmöller
2022-05-20Fixed #33653 -- Fixed template crash when calling methods for built-in types ...cheng
2022-02-16Removed unused Node.__iter__().Keryn Knight
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2022-02-03Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak
2022-02-02Fixed #33474 -- Added __slots__ to Variable and FilterExpression.Keryn Knight
2022-01-07Avoided isinstance(…, Variable) calls in FilterExpression.resolve().Keryn Knight
2021-08-25Refs #32919 -- Simplified Lexer.create_token() by reorganizing blocks.Chris Jerdonek
2021-08-25Refs #32919 -- Added assertion for token start in Lexer.create_token().Chris Jerdonek
2021-08-09Fixed #33002 -- Made DebugLexer.tokenize() more closely parallel Lexer.tokeni...Chris Jerdonek
2021-08-09Refs #33002 -- Renamed variable from bit to token_string in Lexer.tokenize().Chris Jerdonek
2021-08-09Refs #33002 -- Optimized Lexer.tokenize() by skipping computing lineno when n...Chris Jerdonek
2021-08-09Fixed #32990 -- Simplified and optimized tag regex.Greg Twohig
2021-08-05Refs #32986 -- Moved TRANSLATOR_COMMENT_MARK to django.utils.translation.temp...Chris Jerdonek
2021-08-05Fixed #32986 -- Removed unneeded str.find() call in Lexer.create_token().Chris Jerdonek
2021-08-02Fixed #32919 -- Optimized lexing & parsing of templates.Keryn Knight
2021-07-02Fixed #28935 -- Fixed display of errors in extended blocks.cammil
2021-06-11Fixed #32824 -- Improved performance of NodeList.render().Keryn Knight
2021-06-07Fixed #32814 -- Improved performance of TextNode.Keryn Knight
2021-03-17Refs #24121 -- Added __repr__() to Origin and Template.Tiago Honorato
2021-02-26Refs #24121 -- Added __repr__() to FilterExpression, Lexer, Parser, and Token.David Smith
2020-05-11Refs #30116 -- Simplified regex match group access with Match.__getitem__().Jon Dufresne
2019-12-10Used Signature API instead of deprecated inspect.getcallargs().Baptiste Mispelon
2019-12-10Used full module import for inspect in template/base.py.Baptiste Mispelon
2019-10-29Fixed #30899 -- Lazily compiled import time regular expressions.Hasan Ramezani
2019-10-09Improved performance of django.template.base.Parser.Alex Gaynor
2019-10-02Fixed some typos in comments and docs.Min ho Kim
2019-09-24Removed some outdated backwards compatibility imports and misleading comments.Mads Jensen
2019-05-07Removed unnecessary line in DebugLexer.tokenize().sanchjat
2018-08-01Fixed typos in comments and docs.luz.paz
2018-07-31Fixed #29617 -- Fixed Template crash if template_string is lazy.Dražen Odobašić
2018-05-25Fixed #29400 -- Fixed crash in custom template filters that use decorated fun...Ryan Rubin
2018-05-10Replaced TOKEN_* constants by TokenType enums.Claude Paroz
2018-03-24Removed unnecessary variable in Lexer.create_token().Mads Jensen
2017-10-21Fixed #28730 -- Fixed loss of precision for large integer literals in templatesClaude Paroz
2017-09-28Simplified various __eq__() methods.Mads Jensen
2017-08-23Removed unneeded iter() calls.Sergey Fedoseev
2017-04-27Replaced django.utils.inspect.getargspec() with inspect.getfullargspec().Alexander Allakhverdiyev
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-17Refs #27656 -- Updated django.template/tag docstring verbs according to PEP 257.Anton Samarchyan
2017-02-07Refs #27795 -- Removed force_text from the template layerClaude Paroz
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz