Giter Club home page Giter Club logo

Comments (4)

lerad avatar lerad commented on August 16, 2024 3

I had the same issue. Setting LANG=en_US.UTF-8 as mentioned in #51 didn't fix the problem.
I could fix it by setting the environment variable PYTHONIOENCODING=utf8.

This problem seems to appear if the output of a python script is piped into another program.
(http://stackoverflow.com/questions/492483/setting-the-correct-encoding-when-piping-stdout-in-python)
Without knowing too much about the internals of heroku, I guess they pipe stdout/stderr to their log mechanism, which probably leads to this error.

from honcho.

nickstenning avatar nickstenning commented on August 16, 2024

Interesting. I'd really like to see some tests added which use some test UTF-8 files -- both valid and invalid, to replicate these bugs so that we can fix them. See here for some good test files.

from honcho.

maiksprenger avatar maiksprenger commented on August 16, 2024

@nickstenning I unfortunately won't have time to work on this.

from honcho.

nickstenning avatar nickstenning commented on August 16, 2024

So I'm still not entirely clear on what the "best" solution to this is. In Python 2 a sensible option is to only write bytes (AKA str) to sys.stdout, thus bypassing any encoding issues. In Python 3 one can write bytes to sys.stdout.buffer, but this all seems like avoiding the issue.

As of d07ac1e, Honcho ensures that all data it receives from processes is normalised to UTF-8 (invalid UTF-8 is replaced with U+FFFD). It then tries to write only unicode (or str in Python 3) to sys.stdout.

I think this should be fixed, but I have a feeling I've not heard the end of these issues.

from honcho.

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.