Karthikeyan Singaravelan

Results 222 issues of Karthikeyan Singaravelan

The camelcase methods were deprecated in Python 3.10 in https://github.com/python/cpython/pull/25174

https://www.python.org/dev/peps/pep-0632/#migration-advice . Since setuptools is available using setup from setuptools will fix this. https://github.com/scott-griffiths/bitstring/blob/c84ad7f02818caf7102d556c6dcbdef153b0cf11/setup.py#L4

Fixes #196 . Fixes invalid escape sequences as below. ``` $ find . -iname '*.py' | xargs -P 4 -I{} python3.8 -Wall -m py_compile {} ./doc/conf.py:218: DeprecationWarning: invalid escape sequence...

https://www.python.org/dev/peps/pep-0632/#migration-advice https://github.com/ierror/django-js-reverse/blob/7cab78c4531780ab4b32033d5104ccd5be1a246a/django_js_reverse/core.py#L6

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

Deprecated aliases have been removed in python/cpython#28268

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

https://github.com/SpiderClub/weibospider/blob/76549ce48b97095df9e441b785af6ca70e2ce895/decorators/decorators.py#L79 Ref : https://github.com/python/cpython/pull/15225