This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Module uuid: functions for retrieving MAC addres
Type: Stage:
Components: Extension Modules Versions: Python 2.5
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: ping Nosy List: georg.brandl, gvanrossum, klaas, mamrhein, ping
Priority: normal Keywords: patch

Created on 2006-07-03 13:26 by mamrhein, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
hostid.py mamrhein, 2006-07-03 13:26
Messages (4)
msg50590 - (view) Author: Michael Amrhein (mamrhein) Date: 2006-07-03 13:26
I've written functions to retrieve the MAC address that
do not depend on running external programs. Please see
the attached file.
msg56998 - (view) Author: Mike Klaas (klaas) Date: 2007-10-31 19:27
Is this meant to be inserted into uuid.py?  It seems more like a snippet 
from unrelated code: code coventions do not follow PEP 8; there are no 
tests; code does not run as-is (references non-existent variable '_os'--
why no 'import os'?); etc.
msg57013 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-11-01 17:14
Agreed, this is unusable in its current form.
msg57017 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2007-11-01 17:40
This makes more sense as a 3rd party library.
History
Date User Action Args
2022-04-11 14:56:18adminsetgithub: 43604
2007-11-01 17:40:49gvanrossumsetstatus: pending -> closed
nosy: + gvanrossum
messages: + msg57017
2007-11-01 17:14:59georg.brandlsetstatus: open -> pending
resolution: rejected
messages: + msg57013
nosy: + georg.brandl
2007-10-31 19:27:51klaassetnosy: + klaas
messages: + msg56998
2006-07-03 13:26:13mamrheincreate