Armin Ronacher

Results 153 issues of Armin Ronacher

At least on 3.1, have not tried with others yet.

Right now some of the debug prints are hard to read because they spit out the byte arrays as arrays instead of something more byte readable. In particular this affects...

help wanted
good first issue

This prints the status of mail sending which I missed when I did this earlier today.

Status: Stale
Scope: Backend

These tests pass the hardcoded project id of 1. For some reason the actual project it is now 2. Instead of hardcoding this now passes the project id explicitly.

Status: Stale
Scope: Backend

GNU diff and others have some internal heuristics to bail if there are too many changes. There are basically two optimizations: * Discard lines which are completely distinct between two...

Related to #24 similar could benefit of having semantic cleanups for char level diffs. https://neil.fraser.name/writing/diff/

Currently inline highlighting is always using word (or unicode word if available) level diffing. There are some expectations that these are character level diffs (https://github.com/mitsuhiko/similar-asserts/issues/1). There are advantages and disadvantages...

One of the behaviors inherited from pijul are many of the original trait bounds. Unfortunately these make things quite hard to improve various aspects of the implementation. In particular for...

Right now flamegraph uses `dtrace` on macOS but this runs into some limitations: * Inline frames are not properly handled (https://github.com/flamegraph-rs/flamegraph/issues/113) * Running dtrace requires root rights * dtrace is...

I'm not sure if this is a feature request but I have tried using `on_end_tag` to do something after a tag has been closed. Unfortunately the handler is invoked before...