As of Django 4.1, the newly introduced View.view_is_async is showing in CCBV as False, but it should be a method on the class. This is a bug caused by the fact that we use the inspect module to load in the code. See #182, which proposes one solution -- replacing the inspect module.
As of Django 4.1, the newly introduced
View.view_is_asyncis showing in CCBV asFalse, but it should be a method on the class. This is a bug caused by the fact that we use theinspectmodule to load in the code. See #182, which proposes one solution -- replacing theinspectmodule.