summaryrefslogtreecommitdiff
path: root/source4/scripting/python/pyxattr_tdb.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/scripting/python/pyxattr_tdb.c')
-rw-r--r--source4/scripting/python/pyxattr_tdb.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/source4/scripting/python/pyxattr_tdb.c b/source4/scripting/python/pyxattr_tdb.c
index aa511fa5e7..071d4374f2 100644
--- a/source4/scripting/python/pyxattr_tdb.c
+++ b/source4/scripting/python/pyxattr_tdb.c
@@ -19,7 +19,6 @@
*/
#include <Python.h>
-#include "version.h"
#include "includes.h"
#include "../tdb/include/tdb.h"
#include "tdb_wrap.h"
@@ -116,17 +115,5 @@ void initxattr_tdb(void)
"Python bindings for xattr manipulation.");
if (m == NULL)
return;
-
- PyModule_AddObject(m, "version", PyString_FromString(SAMBA_VERSION_STRING));
-
- /* one of the most annoying things about python scripts is
- that they don't die when you hit control-C. This fixes that
- sillyness. As we do all database operations using
- transactions, this is also safe. In fact, not dying
- immediately is unsafe as we could end up treating the
- control-C exception as a different error and try to modify
- as database incorrectly
- */
- signal(SIGINT, SIG_DFL);
}