updated for version 7.3.1163
Problem: Not easy to load Python modules.
Solution: Search "python2", "python3" and "pythonx" directories in
'runtimepath' for Python modules. (ZyX)
diff --git a/src/testdir/test86.in b/src/testdir/test86.in
index a50480c..f2248c4 100644
--- a/src/testdir/test86.in
+++ b/src/testdir/test86.in
@@ -1069,6 +1069,14 @@
ee('vim.current.xxx = True')
EOF
:"
+:" Test import TODO: BROKEN
+:"py << EOF
+:"vim.options['rtp'] = os.getcwd().replace(',', '\\,').replace('\\', '\\\\')
+:"from module import dir as d
+:"from modulex import ddir
+:"cb.append(d + ',' + ddir)
+:"EOF
+:"
:" Test exceptions
:fun Exe(e)
: execute a:e
diff --git a/src/testdir/test87.in b/src/testdir/test87.in
index 5ebb462..986565e 100644
--- a/src/testdir/test87.in
+++ b/src/testdir/test87.in
@@ -1036,6 +1036,14 @@
ee('vim.current.xxx = True')
EOF
:"
+:" Test import TODO: BROKEN
+:"py3 << EOF
+:"vim.options['rtp'] = os.getcwd().replace(',', '\\,').replace('\\', '\\\\')
+:"from module import dir as d
+:"from modulex import ddir
+:"cb.append(d + ',' + ddir)
+:"EOF
+:"
:" Test exceptions
:fun Exe(e)
: execute a:e