New submission from Bradley Froehle <brad.froe...@gmail.com>: When $HOME=/, os.path.expanduser('~/a') returns '//a' rather than '/a'.
This regression was created by a partially incorrect resolution to issue #5471, and affects versions 2.7 and 3.2 (at least). $ HOME=/ python2.7 -c "import os; print os.path.expanduser('~/a')" //a $ HOME=/ python3.2 -c "import os; print(os.path.expanduser('~/a'))" //a In each case the expected result should be '/a'. ---------- components: Library (Lib) messages: 160321 nosy: bfroehle priority: normal severity: normal status: open title: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' versions: Python 2.7, Python 3.2 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue14768> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com