Thomas Ilsche

Results 28 issues of Thomas Ilsche

There are several issues with the following code: https://github.com/viewflow/django-material/blob/55561ac10e40c5e21bbc7fc42dba77a13b20384e/material/frontend/context_processors.py#L6-L8 - `TEMPLATE_CONTEXT_PROCESSORS` has long been replaced with the more complex `TEMPLATES` configuration - `django.contrib.auth.context_processors.auth` adds a user to the context, **not**...

# Bug report The `context` in the return types of `test.client.Client.get` etc. functions cannot be intuitiively used. ## What's wrong `_MonkeyPatchedWSGIResponse` and `_MonkeyPatchedASGIResponse` use ``` context: List[Dict[str, Any]] ``` Therefore,...

bug

# Bug report The type stub for `django.test.ContextList` is incomplete. ## What's wrong https://github.com/typeddjango/django-stubs/blob/master/django-stubs/test/utils.pyi#L44-L46 Is missing `__getitem__(str)` and `__contains__(str)`. Technically, `get(int)` is also missing. I also think that the type...

bug

This is related to #279. To implement a reconnect timeout from the outside, we use a watchdog doing `await RobustConnection.close()` after a reconnect timeout. But that doesn't actually do anything...

With https://github.com/dateutil/dateutil/pull/787/files, `parser.isoparse` has gained the possibility of parsing any number of digits of the sub-second part. However, the [documentation](https://dateutil.readthedocs.io/en/stable/parser.html#dateutil.parser.isoparse) still states > hh:mm:ss.ssssss (Up to 6 sub-second digits) It...

As per the README > Add LOGIN_REQUIRED_IGNORE_PATHS setting. Any requests which match these paths will be ignored. This setting should be a list filled with regex paths (settings.LOGIN_URL always included)....

For userspace threads, our naming based on the comm of threads and processes works just well. For kernel threads, it would be very convenient to apply some heuristic, e.g.: for...

enhancement

We currently write the cpuid metric events both for scheduling events, but als at the samples themselves (see `perf::sample::Writer::cpuid_metric_event_`). The latter should usually be redundant, since it should always be...

enhancement
discussion

With `perf --call-graph lbr`, has more reliable call stack support. And it should be fine on intel these days, apparently available since Haswell. However, it is (still) not supported by...

enhancement

https://github.com/tud-zih-energy/lo2s/blob/cb935f69a1837045ffb3104fe8a358f8c71139e4/src/bfd_resolve.cpp#L127