summaryrefslogtreecommitdiff
path: root/tests/utils_tests/test_inspect.py
AgeCommit message (Collapse)Author
2025-10-31[6.0.x] Fixed #36696 -- Fixed NameError when inspecting functions with ↵Patrick Rauscher
deferred annotations. In Python 3.14, annotations are deferred by default, so we should not assume that the names in them have been imported unconditionally. Backport of 601914722956cc41f1f2c53972d669ddee6ffc04 from main.
2025-09-16Fixed #35859 -- Added background Tasks framework interface.Jake Howard
This work implements what was defined in DEP 14 (https://github.com/django/deps/blob/main/accepted/0014-background-workers.rst). Thanks to Raphael Gaschignard, Eric Holscher, Ran Benita, Sarah Boyce, Jacob Walls, and Natalia Bidart for the reviews.
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-03-22Refs #31732 -- Fixed django.utils.inspect caching for bound methods.Adam Johnson
Thanks Alexandr Artemyev for the report, and Simon Charette for the original patch.
2021-03-22Refs #31372 -- Added django.utils.inspect tests for bound methods.Adam Johnson
2019-12-27Increased test coverage of django.utils.inspect.Mads Jensen
2018-08-07Refs #29244 -- Fixed django.utils.inspect.method_has_no_args() for bound ↵Josh Schneier
methods.
2018-08-07Renamed django.utils.inspect.func_has_no_args() to method_has_no_args().Josh Schneier
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2016-06-16Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne
2015-09-07Fixed #24917 -- Made admindocs display model methods that take arguments.Zan Anderle