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
e96924a9
Commit
e96924a9
authored
Sep 17, 1997
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a booboo in unindex_item
parent
6ece710d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
lib/python/SearchIndex/Index.py
lib/python/SearchIndex/Index.py
+6
-3
No files found.
lib/python/SearchIndex/Index.py
View file @
e96924a9
...
...
@@ -10,8 +10,8 @@
__doc__
=
'''Simple column indexes
$Id: Index.py,v 1.
6 1997/09/12 14:46:51 jim
Exp $'''
__version__
=
'$Revision: 1.
6
$'
[
11
:
-
2
]
$Id: Index.py,v 1.
7 1997/09/17 18:58:08 brian
Exp $'''
__version__
=
'$Revision: 1.
7
$'
[
11
:
-
2
]
from
BTree
import
BTree
from
intSet
import
intSet
...
...
@@ -103,7 +103,7 @@ class Index:
k
=
f
(
row
,
id
)
try
:
set
=
index
[
k
]
set
.
remove
(
k
)
set
.
remove
(
i
)
except
KeyError
:
pass
def
_apply_index
(
self
,
request
):
...
...
@@ -146,6 +146,9 @@ class Index:
##############################################################################
#
# $Log: Index.py,v $
# Revision 1.7 1997/09/17 18:58:08 brian
# Fixed a booboo in unindex_item
#
# Revision 1.6 1997/09/12 14:46:51 jim
# *** empty log message ***
#
...
...
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