eryksun added the comment:

> That would break anyone else who's manually managing their own 
> activation context around ctypes. 

Since this can't be made to work automatically, I prefer your suggestion to 
continue checking for uuid.dll. You could just do something like the following:

    libnames = ['uuid']
    if sys.platform != 'win32':
        libnames.append('c')

    for libname in libnames:
        ...

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24634>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to