[issue28009] core logic of uuid.getnode() needs refresh

2019-09-26 Thread Tal Einat
Tal Einat added the comment: New changeset 0bcbfa43d55d9558cdcb256d8998366281322080 by Tal Einat (Michael Felt) in branch 'master': bpo-28009: Fix uuid.uuid1() and uuid.get_node() on AIX (GH-8672) https://github.com/python/cpython/commit/0bcbfa43d55d9558cdcb256d8998366281322080 --

[issue28009] core logic of uuid.getnode() needs refresh

2019-07-15 Thread Michael Felt
Michael Felt added the comment: On 14/07/2019 22:28, Tal Einat wrote: > Tal Einat added the comment: > >>> The current code and proposed changes use 'netstat -ia' to find the node >>> however if netstat needs to perform a reverse DNS query to resolve some >>> interfaces this makes using

[issue28009] core logic of uuid.getnode() needs refresh

2019-07-14 Thread Tal Einat
Tal Einat added the comment: >> The current code and proposed changes use 'netstat -ia' to find the node >> however if netstat needs to perform a reverse DNS query to resolve some >> interfaces this makes using uuid1 *really* slow especially when reverse DNS >> queries aren't set up

[issue28009] core logic of uuid.getnode() needs refresh

2019-06-15 Thread miss-islington
miss-islington added the comment: New changeset f0e5c01182daefa20c624383c8a37c25eacfde43 by Miss Islington (bot) in branch '3.8': bpo-28009: Fix uuid SkipUnless logic to be based on platform programs capable of introspection (GH-12777)

[issue28009] core logic of uuid.getnode() needs refresh

2019-06-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +13964 pull_request: https://github.com/python/cpython/pull/14115 ___ Python tracker ___

[issue28009] core logic of uuid.getnode() needs refresh

2019-06-15 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset 3a1d50e7e573efb577714146bed5c03b9c95f466 by Nick Coghlan (Michael Felt) in branch 'master': bpo-28009: Fix uuid SkipUnless logic to be based on platform programs capable of introspection (GH-12777)

[issue28009] core logic of uuid.getnode() needs refresh

2019-06-13 Thread Michael Felt
Michael Felt added the comment: p.s. - changed the title: way back when I first started on this I was mainly concerned that the _netstat_getnode() routine was broken for AIX. During the research and follow-up discussions it has become clear that it is more than just an AIX issue. There are