No se puede borrar el búfer pexpect en python3.X

9

Estoy usando el módulo Pexpect para conectarme al servidor remoto. Puedo enviar y recuperar con éxito la respuesta. Estoy tratando de borrar un búfer esperando algo basura y suponiendo que borrará el búfer, pero en realidad no está borrando el búfer.

A continuación se muestra mi código de muestra

import pexpect
obj = pexpect.spawn("telnet 172.16.250.250", maxread=8192)

obj.sendline("")
result = obj.expect(expected, timeout=3) --> getting output here `OUTPUT 1`
obj.sendline("1")
time.sleep(3)
try:
    obj.expect("Asdfgdsad", timeout=2)  --> I am expecting to clear buffer here but it did not

except pexpect.TIMEOUT:
    pass
print("buffer is", obj.buffer) . --> This is printing output `OUTPUT 1` as I have meniotned

Estoy haciendo algo mal aquí? Estoy usando python3.7. Si no recuerdo mal, funcionaba correctamente en python2.X

Nitesh
fuente

Respuestas:

3

Puede borrar el búfer pexpects al leerlo explícitamente, IIRC.

flush = ''
while not obj.expect(r'.+', timeout=5):
    flush += obj.match.group(0)
Aiyion.Prime
fuente