diff options
author | Larry Hastings <larry@hastings.org> | 2015-04-14 18:07:59 -0400 |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2015-04-14 18:07:59 -0400 |
commit | 89964c48d1493e5fe87f1ca3ac78029cfbd3b64b (patch) | |
tree | 9eaf0ab850b9868a6529905f0f3642fb45da0c10 /Modules/pyexpat.c | |
parent | Merge: #23925: stop (eg) PYTHONSTARTUP from causing test_cmd_line failure. (diff) | |
download | cpython-89964c48d1493e5fe87f1ca3ac78029cfbd3b64b.tar.gz cpython-89964c48d1493e5fe87f1ca3ac78029cfbd3b64b.tar.bz2 cpython-89964c48d1493e5fe87f1ca3ac78029cfbd3b64b.zip |
Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.
Diffstat (limited to 'Modules/pyexpat.c')
-rw-r--r-- | Modules/pyexpat.c | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 52064a59b5d..706319ec00c 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -716,8 +716,9 @@ Parse XML data. [clinic start generated code]*/ static PyObject * -pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyObject *data, int isFinal) -/*[clinic end generated code: output=2d4dc77f4d434854 input=e37b81b8948ca7e0]*/ +pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyObject *data, + int isFinal) +/*[clinic end generated code: output=37e105d55645b0f2 input=e37b81b8948ca7e0]*/ { const char *s; Py_ssize_t slen; @@ -918,8 +919,10 @@ Create a parser for parsing an external entity based on the information passed t [clinic start generated code]*/ static PyObject * -pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self, const char *context, const char *encoding) -/*[clinic end generated code: output=942f300ed0e56054 input=283206575d960272]*/ +pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self, + const char *context, + const char *encoding) +/*[clinic end generated code: output=535cda9d7a0fbcd6 input=283206575d960272]*/ { xmlparseobject *new_parser; int i; @@ -1551,8 +1554,9 @@ Return a new XML parser object. [clinic start generated code]*/ static PyObject * -pyexpat_ParserCreate_impl(PyModuleDef *module, const char *encoding, const char *namespace_separator, PyObject *intern) -/*[clinic end generated code: output=b839b60992d8ce71 input=71b9f471aa6f8f86]*/ +pyexpat_ParserCreate_impl(PyModuleDef *module, const char *encoding, + const char *namespace_separator, PyObject *intern) +/*[clinic end generated code: output=81fccd233e1743a8 input=71b9f471aa6f8f86]*/ { PyObject *result; int intern_decref = 0; |