[issue16102] uuid._netbios_getnode() is outdated

2014-09-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset f9cd915410d2 by Georg Brandl in branch '3.2': Issue #19855: uuid.getnode() on Unix now looks on the PATH for the https://hg.python.org/cpython/rev/f9cd915410d2 -- ___ Python tracker

[issue16102] uuid._netbios_getnode() is outdated

2013-06-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 27f55ff12f41 by Serhiy Storchaka in branch '3.3': Issue #16102: Make uuid._netbios_getnode() work again on Python 3. http://hg.python.org/cpython/rev/27f55ff12f41 New changeset 4a0017722910 by Serhiy Storchaka in branch 'default': Issue #16102:

[issue16102] uuid._netbios_getnode() is outdated

2013-06-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: commit review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16102

[issue16102] uuid._netbios_getnode() is outdated

2013-05-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: If noone has reported the issue in years (Google doesn't seem to report any occurrence), perhaps it means the code is simply not used anymore? In which case it should probably be removed. -- nosy: +pitrou ___

[issue16102] uuid._netbios_getnode() is outdated

2013-05-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16102 ___ ___

[issue16102] uuid._netbios_getnode() is outdated

2013-05-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Any exceptions were silently dropped. And tests silently skipped (issue18094). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16102 ___

[issue16102] uuid._netbios_getnode() is outdated

2013-05-28 Thread A.M. Kuchling
A.M. Kuchling added the comment: This patch seems obviously correct to me, so it should be applied. It looks like there's already a test in test_uuid.py that exercises _netbios_getnode() if the netbios module is importable, so there's no test to add, though maybe we need a buildbot that has

[issue16102] uuid._netbios_getnode() is outdated

2013-04-05 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +brian.curtin, tim.golden ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16102 ___ ___

[issue16102] uuid._netbios_getnode() is outdated

2012-10-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- keywords: +needs review stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16102 ___

[issue16102] uuid._netbios_getnode() is outdated

2012-10-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: As I see in pywin32 sources status.adapter_address is bytes in Python 3. Here is a trivial patch. -- keywords: +patch Added file: http://bugs.python.org/file27658/uuid_netbios_getnode.patch ___ Python tracker

[issue16102] uuid._netbios_getnode() is outdated

2012-10-01 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Function uuid._netbios_getnode() in Lib/uuid.py is not properly ported from Python 2. At least it uses indexing on map result. Perhaps there are other errors. The function obviously not been tested for years. -- components: Library (Lib), Windows