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
x
22
22
1
telconn=pexpect.spawn('telnet 10.24.12.83')
2
telconn.logfile = sys.stdout
3
login=telconn.expect([":","key to proceed.",">"])
4
if login==0:
5
telconn.send("user1" + "r")
6
telconn.expect(":")
7
telconn.send("paswd1" + "rrrrnnn")
8
login1=telconn.expect([">","key to proceed."])
9
if login1==0:
10
print("nothing")
11
elif login1==1:
12
telconn.expect("key to proceed.")
13
telconn.send ("03")
14
telconn.expect(">")
15
if login==1:
16
telconn.send ("03")
17
telconn.expect(">")
18
print("ctlc")
19
elif login==2:
20
telconn.send("nr")
21
telconn.expect(">")
22
The error what I get is :
JavaScript
1
19
19
1
Traceback (most recent call last):
2
File "cleanup1.py", line 128, in <module>
3
Connect()
4
File "cleanup1.py", line 53, in Connect
5
login=telconn.expect([":","key to proceed.",">"])
6
File "/corp/global/install-dependent/python/3.4.3/lib/python3.4/site-packages/pexpect/spawnbase.py", line 315, in expect
7
timeout, searchwindowsize, async)
8
File "/corp/global/install-dependent/python/3.4.3/lib/python3.4/site-packages/pexpect/spawnbase.py", line 339, in expect_list
9
return exp.expect_loop(timeout)
10
File "/corp/global/install-dependent/python/3.4.3/lib/python3.4/site-packages/pexpect/expect.py", line 97, in expect_loop
11
incoming = spawn.read_nonblocking(spawn.maxread, timeout)
12
File "/corp/global/install-dependent/python/3.4.3/lib/python3.4/site-packages/pexpect/pty_spawn.py", line 455, in read_nonblocking
13
return super(spawn, self).read_nonblocking(size)
14
File "/corp/global/install-dependent/python/3.4.3/lib/python3.4/site-packages/pexpect/spawnbase.py", line 157, in read_nonblocking
15
self._log(s, 'read')
16
File "/corp/global/install-dependent/python/3.4.3/lib/python3.4/site-packages/pexpect/spawnbase.py", line 115, in _log
17
self.logfile.write(s)
18
TypeError: must be str, not bytes
19
Advertisement
Answer
pexpect
wants to log bytes, not decoded strings. You can just let it do that:
JavaScript
1
2
1
telconn.logfile = sys.stdout.buffer
2
sys.stdout
defaults to expecting strings. Internal buffer is happy with bytes.