Marius Gedminas
Marius Gedminas
I have a config file that looks like this: ``` ini [pov-server-page] # If set to 0 (default), running pov-update-server-page won't do anything # enabled = 1 # Apache password...
I'm trying to work on [linkchecker](https://github.com/linkchecker/linkchecker) and I get the following error, most likely because there's a file in the test scaffolding with a non-UTF-8 filename: ``` /home/mg/.vim/bundle/command-t/ruby/command-t/lib/command-t/scanner/file_scanner.rb:84:in `=~' /home/mg/.vim/bundle/command-t/ruby/command-t/lib/command-t/scanner/file_scanner.rb:84:in...
I've upgraded command-t and was disappointed to see it no longer ignores my ./client/node_modules tree (which is huge and causes the 200,000 file limit warning message). I then read :h...
These tests currently fail because mutt completion is buggy. Merging #463 and #465 makes all the tests pass. This commit also includes a unit tests for the _muttconfvar helper introduced...
Closes #464.
The `$muttcmd -Q ... | sed ...` invocation was repeated in three places, so I've extracted it into a new helper function `_muttconfvar()`. Closes #462. (I looked into adding a...
Just saw this in my error log. It looks like one of the stack frames contained a local variable with binary data (the contents of the uploaded image file, as...
I would like to format a line of text with optional trailing parts like this: ```python t = Terminal() print('{part1} {part2} {part3}'.format( part1=t.green(text_for_part1), part2=t.blue(text_for_part2), part3=t.yellow(text_for_part3), ).rstrip()) ``` I would like...
We're trying to use this action for a project that uses coverage.py plugins (specifically, https://pypi.org/project/coverage-python-version/), and we're experiencing the following problem: https://github.com/zopefoundation/zope.interface/pull/243/checks?check_run_id=2515733925 ``` Trying submitting coverage with service_name: github... cd...
In 21d396902acf61ffeeaa3d81d075a1f156dbaf42 I added a dependency on distutils.text_file.TextFile() because I thought that's what setuptools used to read MANIFEST.in files. Later I realized that was wrong and that setuptools has its...