File tree 1 file changed +0
-14
lines changed
1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -422,13 +422,6 @@ def __getattr__(self, attr):
422
422
except AttributeError :
423
423
return self .__getattribute__ (attr )
424
424
425
- @property
426
- def DATA (self ):
427
- raise NotImplementedError (
428
- '`request.DATA` has been deprecated in favor of `request.data` '
429
- 'since version 3.0, and has been fully removed as of version 3.2.'
430
- )
431
-
432
425
@property
433
426
def POST (self ):
434
427
# Ensure that request.POST uses our request parsing.
@@ -447,13 +440,6 @@ def FILES(self):
447
440
self ._load_data_and_files ()
448
441
return self ._files
449
442
450
- @property
451
- def QUERY_PARAMS (self ):
452
- raise NotImplementedError (
453
- '`request.QUERY_PARAMS` has been deprecated in favor of `request.query_params` '
454
- 'since version 3.0, and has been fully removed as of version 3.2.'
455
- )
456
-
457
443
def force_plaintext_errors (self , value ):
458
444
# Hack to allow our exception handler to force choice of
459
445
# plaintext or html error responses.
You can’t perform that action at this time.
0 commit comments