Raphael Gaschignard

Results 35 issues of Raphael Gaschignard

Basically there are times where you want to say "I have Tag A and Tag B, let's have only Tag A". This would involve rewriting any `TagItem`s and friends that...

djangonauts-reserved

The sample app is currently included in releases, which increases the release size and also taking the `sample_taggit` namespace for itself. I think here this is just a manifest fix...

### Question A recent shell session: ``` ~> def foo [--hi-there] { 10/23/2023 03:01:34 PM ::: $hi-there ::: }; foo Error: nu::parser::parse_mismatch × Parse mismatch during operation. ╭─[entry #40:1:1] 1...

question
unhelpful-error

Fixes #10815 When someone accidentally does `$foo-bar` instead of `$foo_bar`, there are two parse errors: - "this is not a variable name" (beacuse of the hyphen) - "did you mean...

## Summary This sets up "jump to definition" functionality in the `red_knot` server. Here are some challenges in doing this: - I need to go from a (file, line, row)...

red-knot

With the following snippet: ```python from dataclasses import dataclass from typing import Generic, TypeVar T = TypeVar('T') @dataclass class DebugVisitor(Generic[T]): tree_depth: int = 0 print("DONE") ``` Loading the module blows...

bug
python compat
area-dataclasses

This DEP follows discussion [in the forum](https://forum.djangoproject.com/t/is-dep009-async-capable-django-still-relevant/30132/16) followed by a reference implementation and circulating this DEP in a pre-draft state to several members of the community. I do not have...

https://github.com/encode/django-rest-framework/blame/853969c69c815be69513c2f63a41285858a45352/rest_framework/viewsets.py#L106-L107 We didn't have `head` set in our actions on a viewset, but `head` would suddenly appear in a viewset's `actions`, but seemingly randomly. This way of filling in `head`...