-
Notifications
You must be signed in to change notification settings - Fork 1
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
Python3 compatibility #3
Comments
Works for both 2 and 3 try:
return isinstance(obj, basestring)
except NameError:
return isinstance(obj, str) |
https://github.com/getzze/Watcher/blob/master/watcher.py#L67-L69 |
|
Typo: |
What is the problem of opening the files for stdin, stdout and stderr not in binary? Also, can you make pull request instead of comments? It is easier to comment the changes then and to accept them. |
I've added binary
Then I've googled. |
I cannot fork your repo because I end up in splitbrain's one. |
Did you try |
Cloning works but I cannot fork two repos being forks of each other. |
Please make those changes for |
I think stdin and sdtout also need to have b. |
Check with python3 and python2
The text was updated successfully, but these errors were encountered: