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
bf075713
Kaydet (Commit)
bf075713
authored
Eki 31, 2010
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix ResourceWarning for unclosed files (from os.popen)
üst
a9615d14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
uuid.py
Lib/uuid.py
+7
-7
No files found.
Lib/uuid.py
Dosyayı görüntüle @
bf075713
...
@@ -322,15 +322,15 @@ def _find_mac(command, args, hw_identifiers, get_index):
...
@@ -322,15 +322,15 @@ def _find_mac(command, args, hw_identifiers, get_index):
# LC_ALL to get English output, 2>/dev/null to
# LC_ALL to get English output, 2>/dev/null to
# prevent output on stderr
# prevent output on stderr
cmd
=
'LC_ALL=C
%
s
%
s 2>/dev/null'
%
(
executable
,
args
)
cmd
=
'LC_ALL=C
%
s
%
s 2>/dev/null'
%
(
executable
,
args
)
pipe
=
os
.
popen
(
cmd
)
with
os
.
popen
(
cmd
)
as
pipe
:
for
line
in
pipe
:
words
=
line
.
lower
()
.
split
()
for
i
in
range
(
len
(
words
)):
if
words
[
i
]
in
hw_identifiers
:
return
int
(
words
[
get_index
(
i
)]
.
replace
(
':'
,
''
),
16
)
except
IOError
:
except
IOError
:
continue
continue
for
line
in
pipe
:
words
=
line
.
lower
()
.
split
()
for
i
in
range
(
len
(
words
)):
if
words
[
i
]
in
hw_identifiers
:
return
int
(
words
[
get_index
(
i
)]
.
replace
(
':'
,
''
),
16
)
return
None
return
None
def
_ifconfig_getnode
():
def
_ifconfig_getnode
():
...
...
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