[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2016-06-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset b4839797f482 by Matthias Klose in branch '2.7':
Issue #7356: ctypes.util: Make parsing of ldconfig output locale independent.
https://hg.python.org/cpython/rev/b4839797f482

--
nosy: +python-dev

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2016-06-09 Thread Martin Panter

Martin Panter added the comment:

This was supposed to be fixed in 2.7 by r78979 and beb9d176503e. But those 
changes were made to the dead _findLib_ldconfig() function (later deleted as 
part of Issue 13979). I will port the changes to the live 
_findSoname_ldconfig() function.

--
nosy: +martin.panter

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2010-03-19 Thread Matthias Klose

Matthias Klose d...@debian.org added the comment:

committed to the 2.6 branch as well

--
resolution:  - fixed
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7356
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2010-03-15 Thread Matthias Klose

Matthias Klose d...@debian.org added the comment:

fixed for 2.7, 3.1, 3.2, will fix for 2.6 after the 2.6.5 release.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7356
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2009-11-19 Thread Matthias Klose

New submission from Matthias Klose d...@debian.org:

% /sbin/ldconfig -p | grep GL
libGLU.so.1 (libc6) = /usr/lib/libGLU.so.1
libGLEW.so.1.5 (libc6) = /usr/lib/libGLEW.so.1.5
libGL.so.1 (libc6, Système d'exploitation ABI : Linux 2.4.20) =
/usr/lib/libGL.so.1

the regexp fails to parse this. proposing to set LANG=C when calling
ldconfig.

--
assignee: theller
components: ctypes
files: util.py.diff
keywords: patch
messages: 95475
nosy: doko, theller
severity: normal
status: open
title: parsing of ldconfig output in ctypes/utils.py depends on the locale
versions: Python 2.6, Python 2.7, Python 3.1, Python 3.2
Added file: http://bugs.python.org/file15363/util.py.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7356
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2009-11-19 Thread Thomas Heller

Thomas Heller thel...@ctypes.org added the comment:

I'm curious:  Which output do you get from:
  'LANG=C /sbin/ldconfig -p | fgrep GL'

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7356
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2009-11-19 Thread Matthias Klose

Matthias Klose d...@debian.org added the comment:

$ LANG=C /sbin/ldconfig -p | fgrep GL
libGLU.so.1 (libc6) = /usr/lib/libGLU.so.1
libGLEW.so.1.5 (libc6) = /usr/lib/libGLEW.so.1.5
libGL.so.1 (libc6, OS ABI: Linux 2.4.20) = /usr/lib/libGL.so.1

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7356
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7356] parsing of ldconfig output in ctypes/utils.py depends on the locale

2009-11-19 Thread Thomas Heller

Thomas Heller thel...@ctypes.org added the comment:

I assume the patch is fine, would you like to apply it?  Thanks.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7356
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com