Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
34009f6a
Commit
34009f6a
authored
Jul 17, 2011
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit micro-optimization, tuple addition is faster for few elements
parent
9aa6bf88
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
src/OFS/Traversable.py
src/OFS/Traversable.py
+5
-6
No files found.
src/OFS/Traversable.py
View file @
34009f6a
...
...
@@ -126,11 +126,11 @@ class Traversable:
if
id
is
None
:
id
=
self
.
getId
()
path
=
(
id
,
)
p
=
aq_parent
(
aq_inner
(
self
))
if
p
is
None
:
return
(
id
,
)
return
path
path
=
[
id
]
func
=
self
.
getPhysicalPath
.
im_func
while
p
is
not
None
:
if
func
is
p
.
getPhysicalPath
.
im_func
:
...
...
@@ -142,17 +142,16 @@ class Traversable:
if
pid
is
None
:
pid
=
p
.
getId
()
path
.
insert
(
0
,
pid
)
path
=
(
pid
,
)
+
path
try
:
p
=
p
.
__parent__
except
AttributeError
:
p
=
None
else
:
if
IApplication
.
providedBy
(
p
):
path
.
insert
(
0
,
''
)
path
=
tuple
(
path
)
path
=
(
''
,
)
+
path
else
:
path
=
p
.
getPhysicalPath
()
+
tuple
(
path
)
path
=
p
.
getPhysicalPath
()
+
path
break
return
path
...
...
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