Anthony Sottile
Anthony Sottile
unless you're planning on working on this -- I don't think this will be fixed (looks like you added the latex implementation)
seems reasonable, might be difficult / complicated to get this right given someone can `myapp = Flask(...) ... @myapp.route` or even `from foo import myapp ... @myapp.route`
I was planning to add a --verbose which toggles the PIPE bit, feel free to send a PR
Also hit this as well -- fixed it by adding the `deadsnakes-issues-bot` to the [`deadsnakes`](https://github.com/deadsnakes) org for my import :)
🤔 ```pycon >>> @selfless ... def f(x): ... x = x ... def g(): ... return x + 2 ... def h(new_x): ... x = new_x ... >>> >>> import...
@jayvdb if you're packaging this you probably want https://github.com/asottile/hecate/commit/bbec887f69f7cba9369051941fdbd8b48902ac14 as well
I've revived this patch and can confirm it works: https://github.com/asottile/ngx_aws_auth/commit/768e8b6efec3a53b25ab7317ab49048a24766f81 I'm seeding this information using the aws metadata service: ```python URL = 'http://169.254.169.254/latest/meta-data/iam/security-credentials/{}' TMPL = '''\ daemon off; pid {pidfile};...
this message is normal in verbose mode -- it is a debug message showing that it is not attached to a tty ```console $ echo hi | dumb-init --verbose echo...
I'm not sure why one would be confused -- it's only there in `--verbose` mode, it's not messaged as an error, it doesn't terminate the process.
in think you're confusing "stderr" with errors -- output is sent to stderr to not interfere with program output