Coder Social home page Coder Social logo

Comments (5)

nmz787 avatar nmz787 commented on August 19, 2024

(and since the logging doesn't work, I can't really verify if things are working as expected in the spawned shell)

from wexpect.

nmz787 avatar nmz787 commented on August 19, 2024

hacking wexpect\host.py in the class SpawnBase to change def expect

from:

    def expect(self, pattern, timeout=-1, searchwindowsize=None):
        compiled_pattern_list = self.compile_pattern_list(pattern)
        return self.expect_list(compiled_pattern_list, timeout, searchwindowsize)

to

    def expect(self, pattern, timeout=-1, searchwindowsize=None):
        compiled_pattern_list = self.compile_pattern_list(pattern)
        retval = self.expect_list(compiled_pattern_list, timeout, searchwindowsize)
        try:
            self.logfile_read.write(self.before)
        except:
            pass
        return retval

gets the logging to work again... not sure what the more elegant way to fix this is though... my code has 64 places using shell.expect... I could add a wrapper in my code for that call, but it seems a little uglier than I'd like.

Can you suggest something better?

from wexpect.

raczben avatar raczben commented on August 19, 2024

Sorry for the delay. I can reproduce the issue, which is a more general issue, in this, v3.3.0 version.

I found the issue. Do you really need the SpawnSocket? The SpawnPipe is more stable. The SpawnSocket, has not CI tests yet.

Please use v3.2.0, (pip install wexpect==3.2.0)
or
SpawnPipe (os.environ['WEXPECT_SPAWN_CLASS'] = 'SpawnSocket')

while I fix the issue.

from wexpect.

raczben avatar raczben commented on August 19, 2024

3.3.1.dev9 solve this issue:

pip install wexpect==3.3.1.dev9

from wexpect.

raczben avatar raczben commented on August 19, 2024

v3.3.1 fixes this issue.

Upgrade your installation with:

python -m pip install --upgrade wexpect

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.