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
af37382a
Commit
af37382a
authored
Sep 10, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed doc string.
parent
e2249385
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
lib/python/SearchIndex/Trie.c
lib/python/SearchIndex/Trie.c
+6
-3
No files found.
lib/python/SearchIndex/Trie.c
View file @
af37382a
...
...
@@ -53,7 +53,7 @@
static
char
Trie_module_documentation
[]
=
""
"
\n
$Id: Trie.c,v 1.1
2 1997/07/18 14:43:2
4 jim Exp $"
"
\n
$Id: Trie.c,v 1.1
3 1997/09/10 17:27:1
4 jim Exp $"
;
...
...
@@ -395,7 +395,7 @@ static struct PyMethodDef Trie_methods[] = {
"__setstate__(v) -- Set the persistent state of the trie"
},
#ifdef PERSISTENT
{
"_p___reinit__"
,
(
PyCFunction
)
Trie__p___reinit__
,
METH_VARARGS
,
"_p___reinit__(
oid,jar,copy
) -- Reinitialize from a newly created copy"
},
"_p___reinit__() -- Reinitialize from a newly created copy"
},
#endif
{
"keys"
,
(
PyCFunction
)
Trie_keys
,
METH_VARARGS
,
"keys() -- Get the keys of the trie"
},
...
...
@@ -747,7 +747,7 @@ void
initTrie
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.1
2
$"
;
char
*
rev
=
"$Revision: 1.1
3
$"
;
UNLESS
(
ExtensionClassImported
)
return
;
...
...
@@ -787,6 +787,9 @@ initTrie()
Revision Log:
$Log: Trie.c,v $
Revision 1.13 1997/09/10 17:27:14 jim
Fixed doc string.
Revision 1.12 1997/07/18 14:43:24 jim
Added cPersistent, PER_DEL invocation to destructor.
Fixed memory leaks in cset.
...
...
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