[issue7880] sysconfig does not like symlinks

2010-03-23 Thread Florent Xicluna
Changes by Florent Xicluna : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue7880] sysconfig does not like symlinks

2010-03-10 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed in r78828 and r78829 (py3k), except for the part related to #7774. (It was turning buildbots red, after Victor fixed #3137) -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> pending _

[issue7880] sysconfig does not like symlinks

2010-02-09 Thread Florent Xicluna
Florent Xicluna added the comment: Yes, it is the issue #7774. The patch proposed on msg98284 should fix sys.executable being a directory. Tarek, if you implement the patch for sysconfig, add a note regarding the dir hack: # XXX : see issue 7774 --

[issue7880] sysconfig does not like symlinks

2010-02-09 Thread Tarek Ziadé
Tarek Ziadé added the comment: Antoine, see http://bugs.python.org/issue7774 -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue7880] sysconfig does not like symlinks

2010-02-09 Thread Antoine Pitrou
Antoine Pitrou added the comment: Why would sys.executable be a directory? -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-lis

[issue7880] sysconfig does not like symlinks

2010-02-07 Thread Florent Xicluna
Florent Xicluna added the comment: actually realpath == abspath on most platforms where symlink is not implemented. Changed. -- Added file: http://bugs.python.org/file16173/issue7880_sysconfig.diff ___ Python tracker

[issue7880] sysconfig does not like symlinks

2010-02-07 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16172/issue7880_sysconfig.diff ___ Python tracker ___ ___ Python-bugs-lis

[issue7880] sysconfig does not like symlinks

2010-02-07 Thread Florent Xicluna
Changes by Florent Xicluna : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue7880] sysconfig does not like symlinks

2010-02-07 Thread Florent Xicluna
Florent Xicluna added the comment: proposed fix. -- keywords: +patch Added file: http://bugs.python.org/file16172/issue7880_sysconfig.diff ___ Python tracker ___

[issue7880] sysconfig does not like symlinks

2010-02-07 Thread Tarek Ziadé
Tarek Ziadé added the comment: Here's the traceback, I'll look at the problem asap 'import site' failed; traceback: Traceback (most recent call last): File "/MacDev/svn.python.org/python-trunk/Lib/site.py", line 530, in main() File "/MacDev/svn.python.org/python-trunk/Lib/site.py", lin

[issue7880] sysconfig does not like symlinks

2010-02-07 Thread Tarek Ziadé
Changes by Tarek Ziadé : -- priority: normal -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue7880] sysconfig does not like symlinks

2010-02-07 Thread Florent Xicluna
New submission from Florent Xicluna : ~ $ cd /tmp ~ $ ln -s /usr/local/bin/python . ~ $ ./python -c "import sys; print sys.executable" 'import site' failed; use -v for traceback /tmp/python -- assignee: tarek components: Library (Lib) messages: 99027 nosy: ezio.melotti, flox, tarek pri