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 ccanepa
Recipients ccanepa
Date 2009-03-25.03:22:32
SpamBayes Score 1.5447082e-08
Marked as misclassified No
Message-id <1237951372.91.0.474657570766.issue5559@psf.upfronthosting.co.za>
In-reply-to
Content
in windows XP, python 2.6.1, 2.6 , python 2.4
1. do an Edit | 'Find in files' [ it pop ups the Output Window with 
result]
2. Right click over one of the target lines found, click the 'goto file
\line' pop up

If the path in the target line has spaces, it will popup a window with 
title 'No special line' and message 'the line you point at doenst look 
like a valid file name followed by a line number'

posible fix:
in idlelib/OutputWindow.py
replace the literal
r'([^\s]+):\s*(\d+):'
with
r'([^\t\n\r\f\v]+):\s*(\d+):'

fair warning: seems to work in windows XP, dont know about other OSes
History
Date User Action Args
2009-03-25 03:22:53ccanepasetrecipients: + ccanepa
2009-03-25 03:22:52ccanepasetmessageid: <1237951372.91.0.474657570766.issue5559@psf.upfronthosting.co.za>
2009-03-25 03:22:33ccanepalinkissue5559 messages
2009-03-25 03:22:32ccanepacreate