From: Neal Norwitz Date: Fri, 3 Jan 2003 18:12:28 +0000 (+0000) Subject: Fix SF #659228, 'realpath' function missing from os.path X-Git-Tag: v2.3c1~2618 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb0246ac2528fbce1cbe25a26f852a4badb4baeb;p=python 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/Misc/NEWS b/Misc/NEWS index 33b380c161..00008e51b1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -38,7 +38,10 @@ Extension modules Library ------- -TBD +- realpath is now exported when doing from poxixpath import *. + It is also exported for ntpath, macpath, and os2emxpath. + See SF bug #659228. + Tools/Demos -----------