Karthikeyan Singaravelan

Results 222 issues of Karthikeyan Singaravelan

> In JDK 9 the package javax.activation is not accessible by default and should be explicitly granted with --add-modules java.activation on compile time. Also, it is deprecated and marked for...

Using camelcase methods have been deprecated in Python 3.10 Ref : python/cpython#25174 currentThread -> current_thread getName -> name ``` rg -t py -w 'currentThread|notifyAll|activeCount|isDaemon|setDaemon' twiggy/lib/__init__.py 7: return threading.currentThread().getName() ```

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

https://github.com/omab/python-social-auth/blob/81c0a542d158772bd3486d31834c10af5d5f08b0/social/tests/models.py#L169 https://docs.python.org/3/library/base64.html#base64.encodestring

Deprecation warnings are raised due to invalid escape sequences in Python 3.8 . Below is a log of the warnings raised during compiling all the python files. Using raw strings...

The deprecated aliases were removed in Python 3.11 in python/cpython#28268 ``` test/test_nose/test_flaky_nose_plugin.py: self.assertDictContainsSubset( test/test_flaky_decorator.py: self.assertDictContainsSubset( ```

The deprecated aliases were removed in Python 3.11 in python/cpython#28268