Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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
edx-platform
Commits
0d0cb565
Commit
0d0cb565
authored
Sep 19, 2013
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Speed up Location creation returning existing locations where possible
parent
d3dc9d27
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
common/lib/xmodule/xmodule/modulestore/__init__.py
+3
-3
No files found.
common/lib/xmodule/xmodule/modulestore/__init__.py
View file @
0d0cb565
...
...
@@ -169,7 +169,9 @@ class Location(_LocationBase):
# names allow colons
check
(
list_
[
4
],
INVALID_CHARS_NAME
)
if
isinstance
(
location
,
basestring
):
if
isinstance
(
location
,
Location
):
return
location
elif
isinstance
(
location
,
basestring
):
match
=
URL_RE
.
match
(
location
)
if
match
is
None
:
log
.
debug
(
'location is instance of
%
s but no URL match'
%
basestring
)
...
...
@@ -195,8 +197,6 @@ class Location(_LocationBase):
check_dict
(
kwargs
)
return
_LocationBase
.
__new__
(
_cls
,
**
kwargs
)
elif
isinstance
(
location
,
Location
):
return
_LocationBase
.
__new__
(
_cls
,
location
)
else
:
raise
InvalidLocationError
(
location
)
...
...
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