make sure the path ends in a slash in reload()
diff --git a/Lib/rexec.py b/Lib/rexec.py
index 9b23b3c..1dc9917 100644
--- a/Lib/rexec.py
+++ b/Lib/rexec.py
@@ -103,7 +103,7 @@
     def reload(self, module, path=None):
         if path is None and hasattr(module, '__filename__'):
 	    head, tail = os.path.split(module.__filename__)
-	    path = [head]
+	    path = [os.path.join(head, '')]
         return ihooks.ModuleImporter.reload(self, module, path)