"hiroc" <[EMAIL PROTECTED]> wrote:

>s.send("abc") # send test string
>
>I need to send hex:"10 06 00 0f 02 bc d1" instead of "abc"
>
>hoW?

One ugly way is
  s.send( "\x10\x06\x00\x0f\x02\xbc\xd1" )
-- 
- Tim Roberts, [EMAIL PROTECTED]
  Providenza & Boekelheide, Inc.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to