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
9914dbfd
Commit
9914dbfd
authored
Dec 14, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forward ported c118863 from 2.13 branch
parent
6cd47cb2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
28 deletions
+24
-28
doc/CHANGES.rst
doc/CHANGES.rst
+2
-0
src/Products/ZCatalog/Lazy.py
src/Products/ZCatalog/Lazy.py
+12
-28
src/Products/ZCatalog/tests/test_lazy.py
src/Products/ZCatalog/tests/test_lazy.py
+10
-0
No files found.
doc/CHANGES.rst
View file @
9914dbfd
...
...
@@ -11,6 +11,8 @@ http://docs.zope.org/zope2/releases/.
Bugs Fixed
++++++++++
- Fix `LazyMap` to avoid unnecessary function calls.
- LP 686664: WebDAV Lock Manager ZMI view wasn't accessible.
- Fixed argument parsing for entrypoint based zopectl commands.
...
...
src/Products/ZCatalog/Lazy.py
View file @
9914dbfd
...
...
@@ -145,42 +145,26 @@ class LazyMap(Lazy):
# Don't access data until necessary
def
__init__
(
self
,
func
,
seq
,
length
=
None
):
self
.
_seq
=
seq
self
.
_data
=
[]
self
.
_func
=
func
self
.
_seq
=
seq
self
.
_func
=
func
if
length
is
not
None
:
self
.
_len
=
length
self
.
_len
=
length
else
:
self
.
_len
=
len
(
seq
)
self
.
_marker
=
object
()
self
.
_data
=
[
self
.
_marker
]
*
self
.
_len
def
__getitem__
(
self
,
index
):
data
=
self
.
_data
def
__getitem__
(
self
,
index
):
data
=
self
.
_data
try
:
s
=
self
.
_seq
s
=
self
.
_seq
except
AttributeError
:
return
data
[
index
]
i
=
index
if
i
<
0
:
i
=
len
(
self
)
+
i
if
i
<
0
:
raise
IndexError
(
index
)
ind
=
len
(
data
)
if
i
<
ind
:
return
data
[
i
]
ind
=
ind
-
1
func
=
self
.
_func
while
i
>
ind
:
try
:
ind
=
ind
+
1
data
.
append
(
func
(
s
[
ind
]))
except
IndexError
:
del
self
.
_func
del
self
.
_seq
raise
IndexError
(
index
)
return
data
[
i
]
value
=
data
[
index
]
if
value
is
self
.
_marker
:
value
=
data
[
index
]
=
self
.
_func
(
s
[
index
])
return
value
class
LazyFilter
(
Lazy
):
...
...
src/Products/ZCatalog/tests/test_lazy.py
View file @
9914dbfd
...
...
@@ -113,6 +113,16 @@ class TestLazyMap(TestLazyCat):
lmap
=
self
.
_createLMap
(
filter
,
seq1
,
seq2
,
seq3
)
self
.
_compare
(
lmap
,
[
str
(
x
).
lower
()
for
x
in
(
seq1
+
seq2
+
seq3
)])
def
testMapFuncIsOnlyCalledAsNecessary
(
self
):
seq
=
range
(
10
)
count
=
[
0
]
# closure only works with list, and `nonlocal` in py3
def
func
(
x
):
count
[
0
]
+=
1
return
x
lmap
=
self
.
_createLMap
(
func
,
seq
)
self
.
assertEqual
(
lmap
[
5
],
5
)
self
.
assertEqual
(
count
[
0
],
1
)
class
TestLazyFilter
(
TestLazyCat
):
...
...
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