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

Use ==/!= to compare str, bytes, and int literals #13

Merged
merged 1 commit into from
Apr 13, 2020

Commits on Apr 13, 2020

  1. Use ==/!= to compare str, bytes, and int literals

    Identity is not the same thing as equality in Python so use ==/!= to compare str, bytes, and int literals. In Python >= 3.8, these instances will raise SyntaxWarnings so it is best to fix them now. https://docs.python.org/3.8/whatsnew/3.8.html#porting-to-python-3-8
    
    % python3.8
    ```
    >>> '*' is '*'
    <stdin>:1: SyntaxWarning: "is" with a literal. Did you mean "=="?
    True
    ```
    cclauss committed Apr 13, 2020
    Configuration menu
    Copy the full SHA
    7a1cb13 View commit details
    Browse the repository at this point in the history