-
Notifications
You must be signed in to change notification settings - Fork 42
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
Integrate subprocess32 #51
Comments
Hmm, shouldn't be too bad probably. A quick look at the 3.5.2 version of subprocess shows that it requires time.monotonic, which I've been meaning to do as it's a dependency for some of the async-type stuff. But maybe makes sense to do 3.2 version of subprocess first as it's already done... |
See https://github.com/kovidgoyal/calibre/blob/master/src/calibre/utils/monotonic.c for monotonic for python 2 |
I submitted a pull request to the subprocess32 project to make subprocess32 build on tauthon. Someone e-mailed me back indicating it'd be better to merge subprocess32 into tauthon than to patch subprocess32 to work out of the box on tauthon. |
@dan-stromberg, what's the PR# (or your branch) that you submitted to subprocess32? |
… On 9/23/19 3:05 PM, Ali Rizvi-Santiago wrote:
@dan-stromberg <https://github.com/dan-stromberg>, what's the PR# (or
your branch) that you submitted to subprocess32?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#51?email_source=notifications&email_token=AMGVVMMXMMKVYE3DVHIGCKDQLE4Q7A5CNFSM4CZHERWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MNGUY#issuecomment-534303571>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMGVVMK743WRDHBKMGHZATDQLE4Q7ANCNFSM4CZHERWA>.
|
thx, sir. I'm working on time.monotonic* right now. I'll look at how to include your PR afterwards. |
Nice.
Thank you.
…On 9/23/19 3:13 PM, Ali Rizvi-Santiago wrote:
thx, sir.
I'm working on time.monotonic* right now. I'll look at how to include
your PR afterwards.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#51?email_source=notifications&email_token=AMGVVMN3TIHLBBSYH2JM643QLE5QTA5CNFSM4CZHERWKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7MNYLY#issuecomment-534305839>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMGVVMOASXTTC73IFLAGPOLQLE5QTANCNFSM4CZHERWA>.
|
I just submitted Python3's It needs testing for OSX as I don't have access to that platform. Actually it probably needs testing against whatever consumes it as I just wrote it up and submitted the PR a few minutes ago.... |
So the internal However, are there any other differences in the |
No, it isn't. Backwards compatibility is a very high priority for us - comes right after security. |
I suppose it wasn't too clear, but according to https://docs.python.org/3/whatsnew/3.7.html, the differences seem to be that Other than Personally instead of using the |
Already ported to 2.7, should be easy to integrate:
https://github.com/google/python-subprocess32
The text was updated successfully, but these errors were encountered: