diff options
Diffstat (limited to 'rest_framework/generics.py')
| -rw-r--r-- | rest_framework/generics.py | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/rest_framework/generics.py b/rest_framework/generics.py index e6cbfca9..40c49844 100644 --- a/rest_framework/generics.py +++ b/rest_framework/generics.py @@ -158,7 +158,7 @@ class GenericAPIView(views.APIView):      # The following methods provide default implementations      # that you may want to override for more complex cases. -    def get_paginate_by(self, queryset=None): +    def get_paginate_by(self):          """          Return the size of pages to use with pagination. @@ -167,11 +167,6 @@ class GenericAPIView(views.APIView):          Otherwise defaults to using `self.paginate_by`.          """ -        if queryset is not None: -            warnings.warn('The `queryset` parameter to `get_paginate_by()` ' -                          'is deprecated.', -                          DeprecationWarning, stacklevel=2) -          if self.paginate_by_param:              try:                  return strict_positive_int( | 
