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

On Python 3.3+, replace pipes.quote with shlex.quote #342

Merged
merged 2 commits into from
May 28, 2024

Commits on Oct 23, 2023

  1. On Python 3.3+, replace pipes.quote with shlex.quote

    The pipes.quote() function was undocumented, and the pipes module was
    deprecated in Python 3.11 and will be removed in Python 3.13.
    
    Fixes ekalinin#341.
    musicinmybrain committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    d20e14f View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2023

  1. Choose shlex or pipes based on Python version

    It was pointed out that pyupgrade can handle this better than
    try/except.
    musicinmybrain committed Nov 4, 2023
    Configuration menu
    Copy the full SHA
    d73eb9c View commit details
    Browse the repository at this point in the history