Giter Site home page Giter Site logo

Comments (5)

raczben avatar raczben commented on June 9, 2024

At the first sight it seems that the logging fails. Please try to remove the logging from the line 1793 as a workaround.

I will try to reproduce as soon as it is possible.

from wexpect.

raczben avatar raczben commented on June 9, 2024

Here is a related StackOverflow post.

I have created a new branch: i11 for this issue.

unicode_parent can reproduce a very similar issue.

from wexpect.

nmz787 avatar nmz787 commented on June 9, 2024

I just encountered the error again.
For me it was self.logfile_read, not self.logfile... I applied what the stackoverflow post said, changing the wexpect.py line to:
self.logfile_read.write (s.encode("utf-8"))

and things seem to work now :)

from wexpect.

nmz787 avatar nmz787 commented on June 9, 2024

I had to update my local copy of wexpect.py with this line today, in place of the previous "fix":
self.logfile_read.write (s.encode("utf-8") if not isinstance(s, str) else s)
It was after using this line:

shell.logfile_read = sys.stdout

that I got the strange error:

Traceback (most recent call last):
  File "main.py", line 11, in <module>
    shell.expect(unique_prompt)
  File "C:\Users\nmz787\git\wexpect_issues\wexpect.py", line 1388, in expect
    return self.expect_list(compiled_pattern_list, timeout, searchwindowsize)
  File "C:\Users\nmz787\git\wexpect_issues\wexpect.py", line 1402, in expect_list
    return self.expect_loop(searcher_re(pattern_list), timeout, searchwindowsize)
  File "C:\Users\nmz787\git\wexpect_issues\wexpect.py", line 1455, in expect_loop
    c = self.read_nonblocking(self.maxread, timeout)
  File "C:\Users\nmz787\git\wexpect_issues\wexpect.py", line 1816, in read_nonblocking
    self.logfile_read.write (s.encode("utf-8") if isinstance(s, str) else s)
TypeError: write() argument must be str, not bytes

from wexpect.

raczben avatar raczben commented on June 9, 2024

I beleive this is the same as #47

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.