Message260826
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 file comes from an file = open(fileadress).read()
the same code return nothing... it do not find the pattern string, and just because of double quote marks (i've not tried with some other marks)
for me it's a bug, because it do works well, if their no quotation marks |
|
Date |
User |
Action |
Args |
2016-02-24 19:13:36 | quetzal | set | recipients:
+ quetzal |
2016-02-24 19:13:36 | quetzal | set | messageid: <1456341216.28.0.891493532956.issue26430@psf.upfronthosting.co.za> |
2016-02-24 19:13:36 | quetzal | link | issue26430 messages |
2016-02-24 19:13:36 | quetzal | create | |
|