#7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double-quote.
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py
index 1a55f70..994dd21 100644
--- a/Lib/distutils/util.py
+++ b/Lib/distutils/util.py
@@ -206,7 +206,7 @@
         paths.remove('.')
     if not paths:
         return os.curdir
-    return apply(os.path.join, paths)
+    return os.path.join(*paths)
 
 # convert_path ()