I've been reading through the Django source code the last few days. When I
was reading the BaseManager source code I saw a method like this:
```python
@classmethod
def _get_queryset_methods(cls, queryset_class):
def create_method(name, method):
@wraps(method)
ger.py", line 89, in
> manager_method
> return method(*args, **kwargs)
>^^^
> TypeError: QuerySet.using() missing 1 required positional argument: 'alias'
>
> I leave further investigation to you. :-)
> On Tuesday, February 27
^^^
> TypeError: QuerySet.using() missing 1 required positional argument: 'alias'
>
> I leave further investigation to you. :-)
> On Tuesday, February 27, 2024 at 7:28:05 PM UTC-5 Ryoma Han wrote:
>
>> I've been reading through th