diff options
author | Tim Potter <tpot@samba.org> | 2003-03-19 11:26:01 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-03-19 11:26:01 +0000 |
commit | 043a5337e46db52d1866e5d17012b4d5ed133a36 (patch) | |
tree | 4a06a30c58f9d694c128d89c209a8fd4ea3349af /source3/python/py_srvsvc.c | |
parent | 50e42357ea5eb3d16185f3b1019ed21bd2314cc9 (diff) | |
download | samba-043a5337e46db52d1866e5d17012b4d5ed133a36.tar.gz samba-043a5337e46db52d1866e5d17012b4d5ed133a36.tar.xz samba-043a5337e46db52d1866e5d17012b4d5ed133a36.zip |
GCC 3.x has deprecated multi-line string constants.
(This used to be commit 54000fc3b0daee452f4d5bc7dad40757f1cf7c11)
Diffstat (limited to 'source3/python/py_srvsvc.c')
-rw-r--r-- | source3/python/py_srvsvc.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/source3/python/py_srvsvc.c b/source3/python/py_srvsvc.c index 8ec2430285..3e5a42be23 100644 --- a/source3/python/py_srvsvc.c +++ b/source3/python/py_srvsvc.c @@ -158,32 +158,32 @@ static PyMethodDef srvsvc_methods[] = { { "setup_logging", (PyCFunction)py_setup_logging, METH_VARARGS | METH_KEYWORDS, - "Set up debug logging. - -Initialises Samba's debug logging system. One argument is expected which -is a boolean specifying whether debugging is interactive and sent to stdout -or logged to a file. - -Example: - ->>> srvsvc.setup_logging(interactive = 1)" }, + "Set up debug logging.\n" +"\n" +"Initialises Samba's debug logging system. One argument is expected which\n" +"is a boolean specifying whether debugging is interactive and sent to stdout\n" +"or logged to a file.\n" +"\n" +"Example:\n" +"\n" +">>> srvsvc.setup_logging(interactive = 1)" }, { "get_debuglevel", (PyCFunction)get_debuglevel, METH_VARARGS, - "Set the current debug level. - -Example: - ->>> srvsvc.get_debuglevel() -0" }, + "Set the current debug level.\n" +"\n" +"Example:\n" +"\n" +">>> srvsvc.get_debuglevel()\n" +"0" }, { "set_debuglevel", (PyCFunction)set_debuglevel, METH_VARARGS, - "Get the current debug level. - -Example: - ->>> srvsvc.set_debuglevel(10)" }, + "Get the current debug level.\n" +"\n" +"Example:\n" +"\n" +">>> srvsvc.set_debuglevel(10)" }, { NULL } }; |