-
-
Notifications
You must be signed in to change notification settings - Fork 502
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug with py3.6 _out function #380
Comments
Any ideas? |
Sorry @retr0h, this one slipped through the cracks. I'll take a look at it today. |
There's a fix on the |
Fixed on master, version |
This was referenced Jun 7, 2017
0-wiz-0
added a commit
to NetBSD/pkgsrc-wip
that referenced
this issue
Jun 19, 2017
* bugfix for poor sleep performance [#378](amoffat/sh#378) * allow passing raw integer file descriptors for `_out` and `_err` handlers * bugfix for when `_tee` and `_out` are used, and the `_out` is a tty or pipe [#384](amoffat/sh#384) * bugfix where python 3.3+ detected different arg counts for bound method output callbacks [#380](amoffat/sh#380)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm having an issue on 3.6 when executing an _out function. I have a CustomLogger and Formatter which work perfectly find under 2.7. They also work fine under 3.6 when not using
sh
.A sample module can be used to reproduce the issue. It simply calls a script which sleeps and prints to stdout.
It looks as though
sh
is providing aqueue.Queue
object to the logger as an argument which is causing the formatting to fail.Working under 2.7
Not working under 3.6
The text was updated successfully, but these errors were encountered: