summarylogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/test.py b/test.py
new file mode 100644
index 000000000000..ab885cd9c50a
--- /dev/null
+++ b/test.py
@@ -0,0 +1,13 @@
+#!/usr/bin/python
+
+import importlib, pprint, sys
+
+pprint.pprint(sys.path)
+
+name = "mwparserfromhell"
+
+try:
+ importlib.import_module(name)
+ print("import success: " + name)
+except ImportError:
+ print("import error: " + name)