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
bed3c451
Commit
bed3c451
authored
Aug 18, 2015
by
Tom Christie
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3288 from thedrow/feature/cached-field-root-and-context
Cached the field's root and context property
parents
1b53e804
79200580
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
rest_framework/fields.py
+3
-2
No files found.
rest_framework/fields.py
View file @
bed3c451
...
...
@@ -17,6 +17,7 @@ from django.forms import ImageField as DjangoImageField
from
django.utils
import
six
,
timezone
from
django.utils.dateparse
import
parse_date
,
parse_datetime
,
parse_time
from
django.utils.encoding
import
is_protected_type
,
smart_text
from
django.utils.functional
import
cached_property
from
django.utils.ipv6
import
clean_ipv6_address
from
django.utils.translation
import
ugettext_lazy
as
_
...
...
@@ -522,7 +523,7 @@ class Field(object):
message_string
=
msg
.
format
(
**
kwargs
)
raise
ValidationError
(
message_string
)
@property
@
cached_
property
def
root
(
self
):
"""
Returns the top-level serializer for this field.
...
...
@@ -532,7 +533,7 @@ class Field(object):
root
=
root
.
parent
return
root
@property
@
cached_
property
def
context
(
self
):
"""
Returns the context as passed to the root serializer on initialization.
...
...
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