Karthikeyan Singaravelan

Results 222 issues of Karthikeyan Singaravelan

Python seems to do some mitigation which can be added to the README Source : https://news.ycombinator.com/item?id=17237665 https://docs.python.org/3/library/zipfile.html?highlight=zipfile#zipfile.ZipFile.extract > If a member filename is an absolute path, a drive/UNC sharepoint and...

Working on it

During encoding the regex pattern is not compiled and is used with re.match directly. Compiling the regex once and using it later will improve the performance tmp.toml : https://github.com/uiri/toml/blob/master/examples/example-v0.4.0.toml Below...

type: task

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

Importing ABC from `collections` has been deprecated since Python 3.4 and removed in Python 3.10. Use `collections.abc` instead.

### Description It seems that the project uses versions of Clojurescript, aleph and http-kit that are incompatible with JDK 9. # (Feature or Bug? i.e Type: Bug) *Type*: Bug ###...

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

`__args__` was removed in https://bugs.python.org/issue40397 and https://bugs.python.org/issue40398 . It seems a lot of places use it that causes test failures in Python 3.9. A quick grep of args shows many...

``` ./qds_sdk/role.py:23: DeprecationWarning: invalid escape sequence \] help="Policy Statement example '[{\"access\":\"deny\", \"resource\": \"all\", \"action\": \"[\"create\",\"update\",\"delete\"\]\"}]'") ./qds_sdk/role.py:42: DeprecationWarning: invalid escape sequence \] help="Policy Statement example '[{\"access\":\"deny\", \"resource\": \"all\", \"action\": \"[\"create\",\"update\",\"delete\"\]\"}]'") ./qds_sdk/commands.py:1124:...