Karoline Pauls
Karoline Pauls
0.9.3 is still vulnerable to: ``` +----------------+----------+------+---------------------------------------------+----------+--------------------------------------+-----------+------------+------------+----------------------------------------------------+ | CVE | SEVERITY | CVSS | PACKAGE | VERSION | STATUS | PUBLISHED | DISCOVERED | GRACE DAYS | DESCRIPTION | +----------------+----------+------+---------------------------------------------+----------+--------------------------------------+-----------+------------+------------+----------------------------------------------------+...
As shown here, the only operation implemented is `exists`: https://github.com/spulec/moto/blob/79af23aeb70fcbd37d56c73e5b026fff71688da0/moto/sns/models.py#L312-L316 Moto version: motoserver/moto:3.1.16 Example code - message not received if using filtering. Remove filtering to receive the message. ``` import...
I followed the steps in https://liquidz.github.io/vim-iced/vim-iced.html#g%3Aiced_enable_clj_kondo_analysis. I set: ``` let g:iced_enable_clj_kondo_analysis = v:true let g:iced_enable_clj_kondo_local_analysis = v:true ``` I was expecting to see linting errors when saving Clojure files with...
I normally avoid VimScript like fire so I don't really know what's going on. But I needed to remove it to make the TCP transport work for me. Otherwise I...
Looks like the json-lines format was added to Ruff in 2.0: https://github.com/astral-sh/ruff/commit/7b4dde0c6c95b7dfe59ef086c18539566b0df6d3 If you load vim with an updated ALE and an old ruff (e.g. `ruff==0.0.269`), instead of a version...
**environment** image:`docker.io/library/python:3.9.6` docker: `Docker version 24.0.7, build afdd53b` (native Linux, Kubuntu) jurigged: 0.5.7 script.py: ``` import time class A: CONST = 12 def m(self, val=CONST): print(val) a = A() while...
Need a sample cow model asset to embody mooishness.
Test file (`decimal_prod.py`): ``` from decimal import Decimal from math import prod from typing import TYPE_CHECKING result = prod([Decimal(1), Decimal(2)]) if TYPE_CHECKING: reveal_type(result) else: print(type(result)) ``` Test: ``` $ mypy...
This fixes the test but I still cannot get a coredump to load locally - the executable cannot be located in it, same goes for any other dump I tried....
Regular methods and classmethods supported. No support for static methods. This is because the frame object doesn't refer to the function, only its code, which leaves no other option than...