Karthikeyan Singaravelan

Results 222 issues of Karthikeyan Singaravelan

Deprecation warning due to invalid escape sequences. Using raw strings or escaping them again helps in resolving this. Check https://github.com/asottile/pyupgrade/ for automatic fix of this. ``` find . -iname '*.py'...

* Deprecation warnings are raised due to invalid escape sequences. This can be fixed by using raw strings or escaping the literals. pyupgrade also helps in automatic conversion : https://github.com/asottile/pyupgrade/...

Ref : https://github.com/python/cpython/pull/28382 https://github.com/lesscpy/lesscpy/blob/47742f26fbf57d30b411251132997acfd9821f5e/test/__init__.py#L28

There are deprecation warnings due to invalid escape sequences. Using raw strings or escaping the literals will help in fixing this. `find . -iname '*.py' | xargs -P 4 -I{}...

## Description The deprecated aliases were removed in Python 3.11 in python/cpython#28268 . ## Motivation and Context This adds Python 3.11 support. The changes are as below : ``` assertEquals...

Deprecation warning due to invalid escape sequences. Using raw strings or escaping them again helps in resolving this. Check https://github.com/asottile/pyupgrade/ for automatic fix of this. ``` find . -iname '*.py'...

## Description Ref : https://github.com/python/cpython/pull/25174 ### System settings - Operating System: - Terminal in use: - Python version: 3.10 - Halo version: - `pip freeze` output: ### Error ``` halo/halo/halo.py:...

``` find . -iname '*.py' | xargs -P 4 -I{} python3.8 -Wall -m py_compile {} ./tests/test_pygrok.py:89: DeprecationWarning: invalid escape sequence \[ pat = '%{HOSTNAME:host} %{IP:client_ip} %{NUMBER:delay}s - \[%{DATA:time_stamp}\]' \ ./pygrok/pygrok.py:85:...