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 stutzbach
Recipients amaury.forgeotdarc, brian.curtin, eric.araujo, stutzbach
Date 2010-07-22.14:27:34
SpamBayes Score 0.04684072
Marked as misclassified No
Message-id <1279808856.51.0.0765810364543.issue5774@psf.upfronthosting.co.za>
In-reply-to
Content
+1 on better names, -1 on removing the reserved parameter

The parameters of OpenKey mirror those of the underlying RegOpenKey call.  If we remove the reserved parameter, then:

1) Any code currently using the sam parameter will break, since it's currently only positional

2) If Microsoft later makes the reserved parameter do something, then we will have to reinsert a parameter before sam or have our arguments in a different order than RegOpenKey

For what it's worth, RegOpenKey names the parameters: hKey, lpSubKey, ulOptions, and samDesired.
History
Date User Action Args
2010-07-22 14:27:36stutzbachsetrecipients: + stutzbach, amaury.forgeotdarc, eric.araujo, brian.curtin
2010-07-22 14:27:36stutzbachsetmessageid: <1279808856.51.0.0765810364543.issue5774@psf.upfronthosting.co.za>
2010-07-22 14:27:35stutzbachlinkissue5774 messages
2010-07-22 14:27:34stutzbachcreate