Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
531381f2
Commit
531381f2
authored
Jun 09, 2013
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Plain Diff
Issue #16102: Make uuid._netbios_getnode() work again on Python 3.
parents
46bebee2
6f50b810
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/uuid.py
Lib/uuid.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/uuid.py
View file @
531381f2
...
...
@@ -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
View file @
531381f2
...
...
@@ -115,6 +115,8 @@ Core and Builtins
Library
-------
-
Issue
#
16102
:
Make
uuid
.
_netbios_getnode
()
work
again
on
Python
3.
-
Issue
#
17134
:
Add
ssl
.
enum_cert_store
()
as
interface
to
Windows
' cert store.
- Issue #18143: Implement ssl.get_default_verify_paths() in order to debug
...
...
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