Telnet versus telnetlib

Grant Edwards grante at visi.com
Sat Mar 1 23:09:14 EST 2008


On 2008-03-01, Gabriel Genellina <gagsl-py2 at yahoo.com.ar> wrote:
> En Fri, 29 Feb 2008 20:34:41 -0200, Sean Davis <seandavi at gmail.com>  
> 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"

-- 
Grant Edwards                   grante             Yow!  You should all JUMP
                                  at               UP AND DOWN for TWO HOURS
                               visi.com            while I decide on a NEW
                                                   CAREER!!



More information about the Python-list mailing list