I'm looking to disable Windows autoplay for a particular device.
There's a registry key
(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers\CancelAutoplay\CLSID)
that will turn off autoplay for listed devices, but one must provide
the device's CLSID as it appears
Try/except sounds like the way to go. Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Thank you for a fine explanation Pat, that clears things up very
nicely. I have one remaining question which I imagine amounts to taste.
What is the superior method of exception handling:
A) To, as you suggest above, import the code as a module from within a
program with special exception handling
Forgive my ignorance, but I'm not quite sure what you mean. I tried
importing the traceback module at the beginning of the script, but that
didn't make a difference. Could you provide example code to illustrate
your comment? Thanks.
-LTM
--
http://mail.python.org/mailman/listinfo/python-list
Yo all, I'm getting into Python for the first time and I'm really
having a blast. I've hit a bit of a snag and was wondering if someone
could lend some insight. Here be the code:
import sys
def myexcepthook(type, value, tb):
import traceback
rawreport = traceback.format_exception(type, value,