Skip to content
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

Make Process::Status Windows-compatible #9021

Merged
merged 2 commits into from
Apr 12, 2020

Commits on Apr 8, 2020

  1. Make Process::Status Windows-compatible.

    Skip the bitmasks/signal handling.
    
    Co-Authored-By: Stephanie Hobbs <steph@rx14.co.uk>
    oprypin and RX14 committed Apr 8, 2020
    Configuration menu
    Copy the full SHA
    0b68044 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2020

  1. Allow Windows exit_code to wrap around to negative integers.

    This is better than ArithmeticOverflow, and actually this is what CMD shell does anyway.
    
    ```cmd
    > py -c "import sys; sys.exit(-5)"
    > echo %ERRORLEVEL%
    -5
    ```
    oprypin committed Apr 12, 2020
    1 Configuration menu
    Copy the full SHA
    f2ce2e2 View commit details
    Browse the repository at this point in the history