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
dd145f10
Commit
dd145f10
authored
Sep 28, 2005
by
Chris Withers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix incorrect docstring.
parent
2432cfa9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
lib/python/DocumentTemplate/cDocumentTemplate.c
lib/python/DocumentTemplate/cDocumentTemplate.c
+5
-4
No files found.
lib/python/DocumentTemplate/cDocumentTemplate.c
View file @
dd145f10
...
@@ -420,10 +420,11 @@ static struct PyMethodDef MM_methods[] = {
...
@@ -420,10 +420,11 @@ static struct PyMethodDef MM_methods[] = {
{
"_pop"
,
(
PyCFunction
)
MM_pop
,
0
,
{
"_pop"
,
(
PyCFunction
)
MM_pop
,
0
,
"_pop() -- Remove and return the last data source added"
},
"_pop() -- Remove and return the last data source added"
},
{
"getitem"
,
(
PyCFunction
)
MM_get
,
METH_VARARGS
,
{
"getitem"
,
(
PyCFunction
)
MM_get
,
METH_VARARGS
,
"getitem(key[,call]) -- Get a value
\n\n
"
"getitem(key[,call]) -- Get a value from the MultiDict
\n\n
"
"Normally, callable objects that can be called without arguments are
\n
"
"If call is true, callable objects that can be called without arguments are
\n
"
"called during retrieval. This can be suppressed by providing a
\n
"
"called during retrieval.
\n
"
"second argument that is false.
\n
"
"If call is false, the object will be returns without any attempt to call it.
\n
"
"If not specified, call is false by default.
\n
"
},
},
{
"has_key"
,
(
PyCFunction
)
MM_has_key
,
METH_VARARGS
,
{
"has_key"
,
(
PyCFunction
)
MM_has_key
,
METH_VARARGS
,
"has_key(key) -- Test whether the mapping has the given key"
"has_key(key) -- Test whether the mapping has the given key"
...
...
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