Fix SF #659228, 'realpath' function missing from os.path

Also added realpath = abspath for os2emx, similar to windows/mac
which also don't really implement realpath.

Backport candidate, I think?
diff --git a/Lib/os2emxpath.py b/Lib/os2emxpath.py
index 0315da0..f92841f 100644
--- a/Lib/os2emxpath.py
+++ b/Lib/os2emxpath.py
@@ -12,7 +12,7 @@
            "basename","dirname","commonprefix","getsize","getmtime",
            "getatime","getctime", "islink","exists","isdir","isfile","ismount",
            "walk","expanduser","expandvars","normpath","abspath","splitunc",
-           "supports_unicode_filenames"]
+           "realpath","supports_unicode_filenames"]
 
 # Normalize the case of a pathname and map slashes to backslashes.
 # Other normalizations (such as optimizing '../' away) are not done
@@ -405,4 +405,7 @@
         path = join(os.getcwd(), path)
     return normpath(path)
 
+# realpath is a no-op on systems without islink support
+realpath = abspath
+
 supports_unicode_filenames = False