Konstantin Baikov

Results 4 issues of Konstantin Baikov

The currently generated tests have a lot of repeated code. Is it possible to just generate a list of tuples of input data and expected result that are usable by...

Print to a file does not close the resource correctly and i get the warning. So since you already use Path, the write_text method is better. Also chmod is not...

Fixes: https://github.com/kivy/kivy/issues/8230 Style keyword is deprecated in sphinx 7.x Maintainer merge checklist * [ ] Title is descriptive/clear for inclusion in release notes. * [ ] Applied a `Component: xxx`...

Perhaps i missing some deeper meaning/use-case but couldn't you just do something like this: ```python async def await_me_maybe(callback): result = callback() if inspect.isawaitable(result): return await result return result ``` instead...