[issue26430] quote marks problem on loaded file

2016-02-24 Thread quetzal
quetzal added the comment: solution found. as Silentghost was saying, the problem was in the encoding of the quotemarks... and somes other /ecute and web encoding... unseeabble directly in my navigator, and not directly in free-access by a simple xxx.replace(a,b)... the translation was not

[issue26430] quote marks problem on loaded file

2016-02-24 Thread quetzal
quetzal added the comment: thanks silentghost for tested it... i'm gonna try to see what happened be there... -- ___ Python tracker ___

[issue26430] quote marks problem on loaded file

2016-02-24 Thread SilentGhost
SilentGhost added the comment: OK, sorry, but this is just nonsense. What most likely happens in your case is that the file doesn't contain a standard ASCII double quote, but one of it's fancy siblings. For the note: I did test and naturally wasn't able to reproduce this. --

[issue26430] quote marks problem on loaded file

2016-02-24 Thread quetzal
quetzal added the comment: well, silentghost... a .txt file, or an .html and that's all... if there's some text into... just find a pattern with some - " - import the file in python(iddle) and type : if '''pattern''' in file: __ print('ok') else: __ print('none') i don't think that a file

[issue26430] quote marks problem on loaded file

2016-02-24 Thread SilentGhost
SilentGhost added the comment: Could you please upload the test file that would allow us to reproduce this behaviour. -- nosy: +SilentGhost ___ Python tracker

[issue26430] quote marks problem on loaded file

2016-02-24 Thread quetzal
quetzal added the comment: the word "string" got an "s" for sure, or it will not match it... but the problem is not about typography :D -- ___ Python tracker

[issue26430] quote marks problem on loaded file

2016-02-24 Thread quetzal
New submission from quetzal: impossible to match a string pattern with a quotation mark in an opened file [code] file = '''it's an opened file made of "strings"''' if '''"string"''' in file: print('ok') else: print('none') [/code] in iddle, it works with no difficulties... but if the