Message225019
FWIW, on my machine I don't have embedded nulls in any of the values that enum_keys is looking for:
>>> import winreg
>>> hkcr=winreg.OpenKey(winreg.HKEY_CLASSES_ROOT, '')
>>> n = []
>>> i = 0
>>> while True:
... try:
... n.append(winreg.EnumKey(hkcr, i))
... except EnvironmentError:
... break
... i += 1
...
>>> [x for x in n if '\0' in x]
[]
>>> |
|
Date |
User |
Action |
Args |
2014-08-07 15:39:34 | steve.dower | set | recipients:
+ steve.dower, loewis, zach.ware, dstufft, DieInSente, venza |
2014-08-07 15:39:34 | steve.dower | set | messageid: <1407425974.04.0.761481206802.issue22028@psf.upfronthosting.co.za> |
2014-08-07 15:39:34 | steve.dower | link | issue22028 messages |
2014-08-07 15:39:33 | steve.dower | create | |
|