This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author PyAcrisel
Recipients PyAcrisel, vinay.sajip
Date 2017-07-30.22:02:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1501452127.74.0.454403415485.issue30842@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2017-07-30 22:02:07PyAcriselsetrecipients: + PyAcrisel, vinay.sajip
2017-07-30 22:02:07PyAcriselsetmessageid: <1501452127.74.0.454403415485.issue30842@psf.upfronthosting.co.za>
2017-07-30 22:02:07PyAcrisellinkissue30842 messages
2017-07-30 22:02:07PyAcriselcreate