Frazer McLean

Results 26 issues of Frazer McLean

I asked a question on #rust-beginners and it was suggested to make a bug report. ```rust fn main() { let implicit = (3, 4); let explicit: (i32, i32) = (3,...

A-inference

### Preflight checklist - [X] I could not find a solution in the existing issues, docs, nor discussions. - [X] I agree to follow this project's [Code of Conduct](https://github.com/ory/hydra/blob/master/CODE_OF_CONDUCT.md). -...

bug

## Summary of changes As a downstream user it is desirable to be able to programmatically determine the precise licenses used by our dependencies. The emerging convention for this is...

This fixes the following mypy error: > Module "marshmallow_oneofschema" does not explicitly export attribute "OneOfSchema" The alternative way to make mypy happy is to do the following, which I can...

Here's an example of how the snapshot is currently formatted: ``` snapshots['test_foo 1'] = '''ID Name Description ------------------------------------ ------------ ------------------------------- 32fd8c27-9110-463f-89c0-eb676814923a Item 1 An item with a long description 32fd8c27-9110-463f-89c0-eb676814923a...

Feel free to reject this if you prefer unittest2: I was doing some benchmarking using pytest and ended up familiarising myself with pytest's parametrization. I prefer the syntax, but it's...

I know that the different functions are not currently used, but the [recommendation I see](https://cryptography.io/en/latest/random-numbers/) (which links to [this page](http://sockpuppet.org/blog/2014/02/25/safely-generate-random-numbers/)) is simply to use `os.urandom`. I also ran a benchmark...

I wanted to add a way to customise the progress bar output, so implemented a parameter to pass a format string. The details are in the commit message, but is...

You can reach this state by iterating over all dates, or probably more commonly by using a cron expression which doesn't make sense like 30th February ```python >>> import crontabula...

This issue is in three parts: ### `no-transform` directive always returns None This directive has no arguments (either in current RFC 9111 or older RFC 2616) ```python from werkzeug.http import...