I thought I understood raw strings, then I got bitten by this:

x=r'c:\blah\'

which is illegal!  I thought that \ had no special meanning in a raw
string so why can't it be the last character?

making me do:

x=r'c:\blah' '\\'

is just silly...

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to