Arnon Sela added the comment:

The procedure:

    pushd $fullpath
    fullpath=$(pwd -P)
    popd

Can be made sh (and other shells) friendly by:
    
    here=$PWD # or $(pwd)
    cd $fullpath
    fullpath=$(pwd -P)
    cd $here

More to write, but should work, right?

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30842>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to