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

fix(profiling): Always use builtin time.sleep #1869

Merged
merged 3 commits into from
Jan 30, 2023

Commits on Jan 27, 2023

  1. fix(profiling): Always use builtin time.sleep

    As pointed out in #1813 (comment),
    gevent patches the `time` module and `time.sleep` will only release the GIL if
    there no other greenlets ready to run. This ensures that we always use the
    builtin `time.sleep` and not the patched version provided by `gevent`.
    Zylphrex committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    850afe7 View commit details
    Browse the repository at this point in the history
  2. run black

    Zylphrex committed Jan 27, 2023
    Configuration menu
    Copy the full SHA
    f5c77bb View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2023

  1. Configuration menu
    Copy the full SHA
    64ee2d4 View commit details
    Browse the repository at this point in the history