Coder Social home page Coder Social logo

Comments (6)

nmz787 avatar nmz787 commented on August 19, 2024

this looks relevant to my exception:
https://stackoverflow.com/a/29737870/253127

[that user's] code used to work until Python 3.4. I know because I've just run into the same issue, calling open() within del. Apparently built-in functions no longer work, because of a change in when del is run as the interpreter shuts down.

from wexpect.

raczben avatar raczben commented on August 19, 2024

I've run your snippet, with no error...

Can you describe your setup to help reporduce the issue?

from wexpect.

nmz787 avatar nmz787 commented on August 19, 2024

That snippet was just the setup, later in your test you would need to run some normal wexpect scenarios... spawning and expecting. Maybe this bug was only in the last release (v 3.3.0)?

from wexpect.

nmz787 avatar nmz787 commented on August 19, 2024

Also, are you using Python > version 3.4? I was using 3.6

from wexpect.

raczben avatar raczben commented on August 19, 2024

I use:

  • Win 10.0.18362 Build 18362
  • Python 3.7.5

Note, that wexpect requires Python 3.5 or higher because the Literal String Interpolation aka. Python f-Strings

I have added your snippet at the beginning of the hello_wexpect example which results the following code, but it still run with no errors.

I cannot reproduce your problem. Can you help me?

'''
This is the simplest example. It starts a windows command interpreter (aka. cmd) lists the current
directory and exits.
'''
import os
os.environ['WEXPECT_SPAWN_CLASS'] = 'SpawnPipe'
os.environ['WEXPECT_LOGGER_LEVEL']='INFO'
from wexpect import spawn
from wexpect import TIMEOUT, EOF


# Start cmd as child process
child = spawn('cmd.exe')

# Wait for prompt when cmd becomes ready.
child.expect('>')

# Prints the cmd's start message
print(child.before, end='')
print(child.after, end='')

# run list directory command
child.sendline('ls')

# Waiting for prompt
child.expect('>')

# Prints content of the directory
print(child.before, end='')
print(child.after, end='')

# Exit from cmd
child.sendline('exit')

# Waiting for cmd termination.
child.wait()

from wexpect.

nmz787 avatar nmz787 commented on August 19, 2024

ok, this issue is a result of me having a class in the file... it doesn't seem to matter where it's defined, before or after imports, before or after the wexpect usage or wait

'''
This is the simplest example. It starts a windows command interpreter (aka. cmd) lists the current
directory and exits.
'''

class a_class():
    def __init__(self):
        pass


import os
os.environ['WEXPECT_SPAWN_CLASS'] = 'SpawnPipe'
os.environ['WEXPECT_LOGGER_LEVEL']='INFO'
from wexpect import spawn
from wexpect import TIMEOUT, EOF


# Start cmd as child process
child = spawn('cmd.exe')

# Wait for prompt when cmd becomes ready.
child.expect('>')

# Prints the cmd's start message
print(child.before, end='')
print(child.after, end='')

# run list directory command
child.sendline('ls')

# Waiting for prompt
child.expect('>')

# Prints content of the directory
print(child.before, end='')
print(child.after, end='')

# Exit from cmd
child.sendline('exit')

# Waiting for cmd termination.
child.wait()

from wexpect.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.