Marti Raudsepp

Results 86 issues of Marti Raudsepp

# Bug report When a Model class includes properties with setters, Django allows assigning values to them via the Model constructor. But django-stubs does not allow that and shows a...

bug

### Step 1: Are you in the right place? - [x] I have verified there are no duplicate active or recent bugs, questions, or requests - [ ] I have...

- [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) Poetry version. - [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this repo and believe that this is not a duplicate. - [x] If...

Bug
Triage

## 🐛 Bug Report This is similar to #6462 and #9335 but with the star-star syntax. There are cases where mypy could prove the following program type-safe, but currently this...

feature
topic-typed-dict
priority-1-normal

**Bug Report** ``` % dmypy restart Daemon stopped Daemon started % dmypy run lib/testlib.py lib/testlib.py:46: error: Unexpected attribute "xxxx" for model "Xxxx" lib/testlib.py:142: error: The return type of a generator...

bug
topic-daemon
topic-error-reporting

Maybe I went totally overboard with this :) but I've been searching for a project on which to try all-in mypy type checking support, and this sort of happened. If...

I've been playing around with Wikipedia's RegExTypoFix project: https://en.wikipedia.org/wiki/Wikipedia:AutoWikiBrowser/Typos While most of the rules compile with fancy-regex, there are a few hundred that fail with error "Look-behind assertion without constant...

help wanted

There was some awkward junk left around between release notes, and I also noticed and fixed a typo. I think this PR warrants a "skip issue" label. ![image](https://user-images.githubusercontent.com/137616/184648677-cb1b9126-f44b-478e-8c2f-de5b65191970.png)

docs
awaiting review
skip news

Currently this project uses the following test to check whether we're migrating: ```python if not set(sys.argv) & {"makemigrations", "migrate", "showmigrations"}: return DeprecatedField(return_instead) ``` This check can be too naive, however:...

When writing command line programs, I often find myself wanting two distinct "info"-like log levels: one for regular output and one when a `--verbose` flag is requested by the user....