Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
358e7ff3
Kaydet (Commit)
358e7ff3
authored
Mar 15, 2010
tarafından
Matthias Klose
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Issue #7356: ctypes.util: Make parsing of ldconfig output independent of
the locale.
üst
24e4e168
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
util.py
Lib/ctypes/util.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/ctypes/util.py
Dosyayı görüntüle @
358e7ff3
...
...
@@ -185,7 +185,7 @@ elif os.name == "posix":
def
_findLib_ldconfig
(
name
):
# XXX assuming GLIBC's ldconfig (with option -p)
expr
=
r'/[^\(\)\s]*lib
%
s\.[^\(\)\s]*'
%
re
.
escape
(
name
)
f
=
os
.
popen
(
'/sbin/ldconfig -p 2>/dev/null'
)
f
=
os
.
popen
(
'
LANG=C
/sbin/ldconfig -p 2>/dev/null'
)
try
:
data
=
f
.
read
()
finally
:
...
...
Misc/NEWS
Dosyayı görüntüle @
358e7ff3
...
...
@@ -20,6 +20,9 @@ Core and Builtins
Library
-------
- Issue #7356: ctypes.util: Make parsing of ldconfig output independent of
the locale.
- Issue #7774: Set sys.executable to an empty string if ``argv[0]`` has been
set to an non existent program name and Python is unable to retrieve the real
program name.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment