Skip to content
Advertisement

pexpect.expect() in python3 is throwing error as “must be in str , not bytes”

I am migrating my code to python 3.4.3. This code works fine in python 2.4.3. but here it throws error in python 3.4.3. should I use anything different from expect ? Here is my code snippet which gets the error:

JavaScript

The error what I get is :

JavaScript

Advertisement

Answer

pexpect wants to log bytes, not decoded strings. You can just let it do that:

JavaScript

sys.stdout defaults to expecting strings. Internal buffer is happy with bytes.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement