You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecation warning due to invalid escape sequences. It can be fixed by raw strings or escaping them again.
Syntax warning over comparison of literals using is
find . -iname '*py' | grep -Ev 'setup|rdf4|tool' | xargs -P4 -I{} python3.8 -Wall -m py_compile {}
./tests/tests.py:559: SyntaxWarning: "is" with a literal. Did you mean "=="?
assert argspec.__class__.__name__ is 'ArgSpec'
./tests/tests.py:561: SyntaxWarning: "is" with a literal. Did you mean "=="?
assert argspec.__class__.__name__ is 'FullArgSpec'
./memoize/__init__.py:447: DeprecationWarning: invalid escape sequence \*
"""
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: