Ben Thorner
Ben Thorner
Code to reproduce the problem: ``` import pty, os, time master, slave = pty.openpty() def loop(): while True: data = os.read(master, 1) print(data) #
## Description I've started using pgcli recently and would really like to use "safe" multiline mode, but I can't get it to work: whenever I press "[esc] [enter]" I just...
This regression was introduced in: https://github.com/alphagov/router/commit/678ef634657885e4eb552954ef89dcc29b47193c It looks like the new code requires the Mongo DB to be a replica set. The test failures don't give any insight into the...
### Expected Behavior We have some data like the following: ```python [ {'id': 'item1', 'percentage': 20}, {'id': 'item2', 'percentage': 50}, {'id': 'item3', 'percentage': 30}, ] ``` We want to make...
Would be great to have this kind of functionality as part of the plugin e.g. `ToggleBufExplorerVerticalSplit`. I made a quick function to do it, but it's hacky because I couldn't...
## Background We refer to this utility in [our troubleshooting guidance](https://github.com/alphagov/govuk-docker/blob/679d5bf335a5f0d5aab7f7e17f6aacac90f435d5/docs/troubleshooting.md#diagnose-common-issues-when-setting-up-govuk-docker), but using it requires someone to install Rbenv, Ruby and Gems. This can take a long time if someone...
This introduces a couple of new abstractions - Readings and Streams - to expose more `reader.py` code for use by libraries. The new abstractions separate how to get readings from...
As far as I can tell there's no way to disable the following: I appreciate some people may want completion in comments / docstrings, but personally I find it very...
Previously it was possible to write a contract like this: ``` [importlinter:contract:core-factories] name = "Factories should be split into subpackages" type = forbidden allow_indirect_imports = true source_modules = tests.factories forbidden_modules...
We're looking at using Interactor to refactor our controllers. One of the nice things is the clear separation of code to handle `success?` and `failed?` cases. Sometimes we may have...