FichteFoll

Results 559 comments of FichteFoll

I have another suggestion (that may go against black's multi-line statement code style because I don't actively use it): ```py my_long_variable_name = lambda_fixture( lambda fixture_1, another_long_fixture_name, some_fixture_factory, some_long_fixture_name_again, short, wow,...

Indeed, but I would argue that adding parentheses around a lambda that occurs in assignments (the only place I can think of where a lambda outside of parentheses could reasonably...

@ownerer the usual procedure is to fork the repository, create a branch in your fork and submit that with a PR.

So you want to automatically locate a number on the current line and insert that number incremented by 10 on the next line when, say, pressing enter at the end...

Can you please elaborate on what you are starting with and what the result should be?

Improve understanding of the examples through visualization of the actual effects. The example format strings would still be included as text, but the two multi-line code blocks would be replaced...

Windows7, ST2220: ``` py >>> .1 0.10000000000000001 ``` Windows7, ST3062: ``` py >>> .1 0.1 ``` It's a precision issue with floating point numbers. Not 100% sure whether we should...

https://docs.python.org/3/tutorial/floatingpoint.html It seems we have 2 possible solutions: 1. Set the default precision in a `format` call to something like 12 (16-18 significant digits are usually the critical zone). Since...

@jbrooksuk Yes, definitely. @mattst Thinking about that, I suppose you are right that there is in fact no actual use case where you'd need a higher precision for printing a...