Giter VIP home page Giter VIP logo

Comments (2)

Gorialis avatar Gorialis commented on September 20, 2024 1

Jishaku doesn't redirect stdout automatically for reasons discussed in #39.

A flag to enable such capturing behavior might be possible, but having it on the command seems like a clunky approach that would have parsing complications, and I don't really want it as an env flag or a switch (like retain) because it would apply to all evaluations, making it easy for the issues described to manifest if you don't make due consideration for it.

I also fear people would turn it on without understanding the implications.

As mentioned in #39, you can do this behavior of your own accord if it is truly necessary like so:

with io!.StringIO() as f, contextlib!.redirect_stdout(f):
    print("hi")

    await _author.send(f.getvalue())  # send stdout contents to author

Otherwise, I recommend adjusting your code to not require capturing of stdout at all. It is more often than not possible to retrieve the data you need programmatically, rather than sifting the output stream.

For instance, if you're just printing to retrieve feedback on intermediate values, you can do so with yield:

x = 1 + 2
yield f"1 + 2 = {x}"

Even print-heavy stdlib functions like dis.dis offer workarounds that allow you to print into a buffer you can report from instead, without touching stdout:

with io!.StringIO() as f:  # no redirect_stdout here!
    dis!.dis(lambda x: x ** 2, file=f)
    yield f.getvalue()

from jishaku.

StarrFox avatar StarrFox commented on September 20, 2024

believe this is answered in #38

from jishaku.

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.