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 eryksun
Recipients eryksun, ncoghlan, steve.dower, terry.reedy
Date 2015-03-11.17:17:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426094251.22.0.800395717188.issue23633@psf.upfronthosting.co.za>
In-reply-to
Content
> To me, the reference to the windows internal function is 
> worse than useless and should perhaps be removed.

The docs could add an example commandline to edit the per-user .ini: 

NT 6: notepad "%LOCALAPPDATA%\py.ini"
NT 5: notepad "%USERPROFILE%\Local Settings\Application Data\py.ini"

Editing the global .ini would be simpler if the launcher looked for it in FOLDERID_ProgramData (i.e. CSIDL_COMMON_APPDATA). In that case even a limited user could create it. For example:

NT 6: notepad "%ProgramData%\py.ini"
NT 5: notepad "%ALLUSERSPROFILE%\Application Data\py.ini"

The security on %ProgramData% grants full control to the creator of files and directories. It also allows all users to create, read and execute files and directories.
History
Date User Action Args
2015-03-11 17:17:31eryksunsetrecipients: + eryksun, terry.reedy, ncoghlan, steve.dower
2015-03-11 17:17:31eryksunsetmessageid: <1426094251.22.0.800395717188.issue23633@psf.upfronthosting.co.za>
2015-03-11 17:17:31eryksunlinkissue23633 messages
2015-03-11 17:17:31eryksuncreate