Thomas Aglassinger

Results 28 comments of Thomas Aglassinger

Probably makes sense although the error reporting might need some changes with possibly multiple readers/writers failing at the same time. Not high on my priority list though, but I leave...

The `--format=summary` has the challenge that it should be somewhat terse to ideally fit within 80 characters per line. The thinking is that most terminals are configured to that width...

The classification is done by pygments, so this would need to be an extra step performed by pygount. Seemingly pygments uses the convention `base_language + "+" + other_languages`, so pygount...

Note to self: We still need to detect C++ to be a full language, not the "+" sub-language of C. Here's a first code snipplet to derive the base language,...

Rich 12.6 includes a fix for [#2513](https://github.com/Textualize/rich/pull/2513) which might be related to this. In summary, running python using `pythonw` results in `stdout` being `None` and nothing to be rendered.

During the holidays I decided to install Python on my Windows 10 box that otherwise is exclusively used for gaming and finally track this down. Turns out the bug shows...

This fix is included with pygount 1.5.1, which is now available from PyPI.

That's how the current implementation works, which is not a good thing. There also is a request to support the `**` for recursive folders, see #59. Probably this would need...

@ropapermaker Assuming you are not going to finish this any more, I'm putting it back to the backlog so it can be revisited again in the future.

True, this is an unfortunate inconsistency and lapse in the JSON output. Background: I always disliked how SLOC tools count even the most trivial pieces of code that add 0...