Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
d13c8076
Commit
d13c8076
authored
Feb 09, 2015
by
Tom Christie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix misleading AttributeErrors
parent
235b98e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
rest_framework/request.py
+12
-3
No files found.
rest_framework/request.py
View file @
d13c8076
...
...
@@ -18,6 +18,7 @@ from django.utils.six import BytesIO
from
rest_framework
import
HTTP_HEADER_ENCODING
from
rest_framework
import
exceptions
from
rest_framework.settings
import
api_settings
import
sys
import
warnings
...
...
@@ -485,8 +486,16 @@ class Request(object):
else
:
self
.
auth
=
None
def
__getattr__
(
self
,
attr
):
def
__getattr
ibute
__
(
self
,
attr
):
"""
Proxy other attributes to the underlying HttpRequest object.
If an attribute does not exist on this instance, then we also attempt
to proxy it to the underlying HttpRequest object.
"""
return
getattr
(
self
.
_request
,
attr
)
try
:
return
super
(
Request
,
self
)
.
__getattribute__
(
attr
)
except
AttributeError
:
info
=
sys
.
exc_info
()
try
:
return
getattr
(
self
.
_request
,
attr
)
except
AttributeError
:
raise
info
[
0
],
info
[
1
],
info
[
2
]
.
tb_next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment