Karthikeyan Singaravelan

Results 222 issues of Karthikeyan Singaravelan

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/ ```...

Django has warnings in asyncio that are also captured in the tests. Filter warnings from django.utils.asyncio module. This was fixed in Django but not yet released : https://github.com/django/django/commit/623c8cd8f41a99f22d39b264f7eaf7244417000b . Fedora...

There are some test failures in CPython master and also 3.8 beta 1. I guess the CI could be using an older version of 3.8. I tried some bisecting and...

asyncio.coroutine is deprecated in python/cpython#13346 . Since 3.4 not supported maybe `async def` can be used? I ran pytest on CPython master and warnings as below : ``` ========================================= warnings...

``` contexttimer/__init__.py 138: and isinstance(func_or_func_args[0], collections.Callable)): ```

https://bugzilla.redhat.com/show_bug.cgi?id=1792921 https://github.com/dmeranda/demjson/blob/5bc65974e7141746acc88c581f5d2dfb8ea14064/test/test_demjson.py#L118 Thanks for the library!

Fixes https://github.com/ritchie46/anaStruct/issues/90

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'...

bug