summaryrefslogtreecommitdiff
path: root/Python/clinic
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-30 11:30:39 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-30 11:30:39 +0300
commit8b2e8b6cce4960e945c7c635c350c8e44a0f9022 (patch)
tree1e5bec3737bb877e4c0d16ac32f60450f957d7dd /Python/clinic
parent7e810a6e3d51e512968f6ac276e555ea99d151d8 (diff)
downloadcpython-git-8b2e8b6cce4960e945c7c635c350c8e44a0f9022.tar.gz
Specify default values of semantic booleans in Argument Clinic generated signatures as booleans.
Diffstat (limited to 'Python/clinic')
-rw-r--r--Python/clinic/bltinmodule.c.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Python/clinic/bltinmodule.c.h b/Python/clinic/bltinmodule.c.h
index bbca53432a..7369148b23 100644
--- a/Python/clinic/bltinmodule.c.h
+++ b/Python/clinic/bltinmodule.c.h
@@ -129,8 +129,8 @@ exit:
}
PyDoc_STRVAR(builtin_compile__doc__,
-"compile($module, /, source, filename, mode, flags=0, dont_inherit=0,\n"
-" optimize=-1)\n"
+"compile($module, /, source, filename, mode, flags=0,\n"
+" dont_inherit=False, optimize=-1)\n"
"--\n"
"\n"
"Compile source into a code object that can be executed by exec() or eval().\n"
@@ -141,9 +141,9 @@ PyDoc_STRVAR(builtin_compile__doc__,
"single (interactive) statement, or \'eval\' to compile an expression.\n"
"The flags argument, if present, controls which future statements influence\n"
"the compilation of the code.\n"
-"The dont_inherit argument, if non-zero, stops the compilation inheriting\n"
+"The dont_inherit argument, if true, stops the compilation inheriting\n"
"the effects of any future statements in effect in the code calling\n"
-"compile; if absent or zero these statements do influence the compilation,\n"
+"compile; if absent or false these statements do influence the compilation,\n"
"in addition to any features explicitly specified.");
#define BUILTIN_COMPILE_METHODDEF \
@@ -660,4 +660,4 @@ builtin_issubclass(PyModuleDef *module, PyObject *args)
exit:
return return_value;
}
-/*[clinic end generated code: output=9b34d1ca57effad8 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=bec3399c0aee98d7 input=a9049054013a1b77]*/