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.

Author db3l
Recipients db3l, loewis, tarek
Date 2009-11-16.11:20:36
SpamBayes Score 8.1584375e-07
Marked as misclassified No
Message-id <1258370437.98.0.638258915477.issue7293@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, BTW, you were missing the VC part of the path in your test.  But if
I run the same code with that corrected on my Win7 box, I get:

>>> from distutils.msvc9compiler import Reg
>>> path = r'Software\Microsoft\VisualStudio\9.0'
>>> Reg.get_value(path, u"fullscreen")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "D:\python\2.6\lib\distutils\msvc9compiler.py", line 62, in get_value
    raise KeyError(key)
KeyError: u'fullscreen'
>>> path = r'Software\Microsoft\VisualStudio\9.0\VC'
>>> Reg.get_value(path, u"build timing")
0

I get the same results on my XP+VS 2008 box but also on my XP + VC
Express box.  (E.g., "fullscreen" doesn't work on any of them)
History
Date User Action Args
2009-11-16 11:20:38db3lsetrecipients: + db3l, loewis, tarek
2009-11-16 11:20:37db3lsetmessageid: <1258370437.98.0.638258915477.issue7293@psf.upfronthosting.co.za>
2009-11-16 11:20:36db3llinkissue7293 messages
2009-11-16 11:20:36db3lcreate