Gram
Gram
Does it make sense for me to keep the PR open any longer or should I just close it? It's ok to not want to merge some random contributions. I'm...
I think it is resolved in #2527, we just forgot to actualize the issue.
@bDrwx Thank you! Looks like there is still no implementation for the rule. Go ahead! I've assigned you to the issue 👍🏿
+1 for the feature. My use case is I'm writing my own mock class with the following API: ```python patcher = Patcher(SomeClass) patcher.some_value = 13 ``` It would be great...
I think the API for the proxy type could look similar to [ParamSpec](https://peps.python.org/pep-0612/): ```python A = AttrSpec('A') class Proxy(Generic[A]): def __setattr__(self, name: A.name, value: A.value) -> None: ... def __delattr__(self,...
I hoped to use pip-audit in our internal poetry-based project, but I can't without the support for poetry.lock (which, as you can see in the PR, is quite short). having...
+1 to the feature. While the syntax introduced by Github may suck, it is quite convenient to be able to produce documentation that is rendered in about the same way...
@brunobord [I'm also not a lawier](https://en.wikipedia.org/wiki/IANAL) and my message cannot be considered legal advice. Still, digging into the mess of software licensing is my hobby, and I understand this mess...
I also stuck with it for quite a while. If not for this issue, I'd never figure out what's the problem. The code: ``` import gleam/io type Source { Stdio...