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
6f50b810
Kaydet (Commit)
6f50b810
authored
Haz 09, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16102: Make uuid._netbios_getnode() work again on Python 3.
üst
e7275ffa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
uuid.py
Lib/uuid.py
+1
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/uuid.py
Dosyayı görüntüle @
6f50b810
...
...
@@ -406,7 +406,7 @@ def _netbios_getnode():
if
win32wnet
.
Netbios
(
ncb
)
!=
0
:
continue
status
.
_unpack
()
bytes
=
map
(
ord
,
status
.
adapter_address
)
bytes
=
status
.
adapter_address
return
((
bytes
[
0
]
<<
40
)
+
(
bytes
[
1
]
<<
32
)
+
(
bytes
[
2
]
<<
24
)
+
(
bytes
[
3
]
<<
16
)
+
(
bytes
[
4
]
<<
8
)
+
bytes
[
5
])
...
...
Misc/NEWS
Dosyayı görüntüle @
6f50b810
...
...
@@ -27,6 +27,8 @@ Core and Builtins
Library
-------
- Issue #16102: Make uuid._netbios_getnode() work again on Python 3.
- Issue #18109: os.uname() now decodes fields from the locale encoding, and
socket.gethostname() now decodes the hostname from the locale encoding,
instead of using the UTF-8 encoding in strict mode.
...
...
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