[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2013-01-16 Thread Brett Cannon
Brett Cannon added the comment: Since this has been pending for over two months I'm claiming it's outdated. -- resolution: - out of date status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13028

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2012-11-12 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: -- nosy: +eric.snow status: pending - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13028 ___

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2012-11-12 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: -- status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13028 ___ ___

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2012-09-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: Which was the command run under strace exactly? -- nosy: +brett.cannon, ncoghlan, pitrou versions: +Python 3.4 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13028

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2012-09-30 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- status: open - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13028 ___ ___ Python-bugs-list

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2012-09-29 Thread Ron Hubbard
Ron Hubbard added the comment: i'll try to reproduce this later. looking at the below strace output, python's behaviour seems pretty stupid tho, for example if /lib is the only existing path out of /lib, /lib64, /usr/lib/, /usr/local/lib, etc etc, it should check for all these directories

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2012-09-28 Thread Thomas Lee
Thomas Lee added the comment: I know this is an old-ish issue, but I can't reproduce anything like this on Debian Wheezy with either Python 2.7 or tip (3.x). I think we need more details of what you're trying to do here Roger. 1. What exactly did you do to reproduce the strace output below?

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2012-09-27 Thread Ron Hubbard
Changes by Ron Hubbard nico.nelson-91c8...@yopmail.com: -- type: - resource usage ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13028 ___ ___

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2011-09-22 Thread Roger
New submission from Roger fzvq...@v.mintemail.com: instead it should check for linux once, store that linux is used and not even once check for dylib strace extract [pid 23025] stat64(//lib/libreadline.dylib, 0xbfd27c1c) = -1 ENOENT (No such file or directory) [pid 23025]

[issue13028] python wastes linux users time by checking for dylib on each dynamic library load

2011-09-22 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: The list of file extensions is written in _PyImport_DynLoadFiletab constant. This list depends on the OS. For Linux, the list is defined in: Python/dynload_shlib.c. I don't understand because in Python 2.7, Python/dynload_shlib.c