En Sun, 02 Mar 2008 02:09:14 -0200, Grant Edwards <[EMAIL PROTECTED]>  
escribi�:

> On 2008-03-01, Gabriel Genellina <[EMAIL PROTECTED]> wrote:
>> En Fri, 29 Feb 2008 20:34:41 -0200, Sean Davis <[EMAIL PROTECTED]>
>> escribió:
>>
>>> When I do an analogous process using telnetlib, I get no debug output,
>>> and most importantly, when I send the XML file to the host, I get no
>>> printed page.  Unfortunately, I do not have access to the host to do
>>> troubleshooting there, so I have to "feel" my way around.  Any
>>> suggestions on what might be going wrong?
>>>
>>> In [12]: tn.write("""<?xml version="1.0" encoding="UTF-8"?>
>>>    ....: <labels _FORMAT="C:\labels\anzick_primary_sample.lbl"
>>
>> \ is the quote character. You have to duplicate it "C:\\labels..." or  
>> use
>> a raw string r"""<?xml ... _FORMAT="C:\labels..."
>
> Or use a forward slash:
>
> "C:/labels/anzick_primary_sample.lbl"

I didn't menction that alternative because it generates a different  
string; the resulting xml document may or may not be equivalent.

-- 
Gabriel Genellina

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

Reply via email to