[issue3045] Windows online help broken when spaces in TEMP environ

2008-07-16 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Fixed in r65035. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3045] Windows online help broken when spaces in TEMP environ

2008-07-07 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file10851/issue3045-py3k.diff ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3045] Windows online help broken when spaces in TEMP environ

2008-07-07 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: This is a really quick fix. Someone with tracker admin access can apply the patches and close this. [Applies to py26 and py3k] -- keywords: +patch versions: +Python 2.6, Python 3.0 -Python 2.5 Added file: http://bugs.python.org/file10850/iss

[issue3045] Windows online help broken when spaces in TEMP environ

2008-06-23 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: This issue is valid in Python2.5. I verified it on a Windows. The fix suggested Changing: os.system(cmd + ' ' + filename) to os.system('%s "%s"' % (cmd,filename)) in pydoc.tempfilepager also makes sense for fixing this issue. --

[issue3045] Windows online help broken when spaces in TEMP environ

2008-06-05 Thread Peter Whaite
New submission from Peter Whaite <[EMAIL PROTECTED]>: If the environ vars TEMP or TMP contain spaces on w32 the on-line help will not work. e.g. help('or') gives the message The system cannot find the file specified. This is because pydoc.tempfilepager sets filename=tempfile.mktemp() which