neumond
neumond
``` >>> lines = """ ... a ... b ... c ... """ >>> lines '\na\nb\nc\n' >>> print(yaml.dump({'a': lines}, default_flow_style=False)) a: ' a b c ' >>> # although roundtrip...
Hi, I'm making lots of background tasks via `asyncio.async`, but it often floods output with tons of ``` Task was destroyed but it is pending! task: ``` Reading the source...
Don't know how legit is that to set_event_loop(None). Discovered this issue making testing suite, where I create new_event_loop for each test. This thing is unobvious. ``` python import asyncio command...
I would like to toggle modems by turtles to automate building. Regarding the code: it works. Only with fullsized wired modems. There's nothing else which could be called _good_, since...
## Useful information to include: - Minecraft version: 1.15.2 - CC: Tweaked version: 1.89.2 precisely, artifact [of this build](https://github.com/SquidDev-CC/CC-Tweaked/runs/822210259) It works like tabulate, dumps whole table immediately, even if it...
Would be very useful. Or even output aggregation by last N weeks.
#### Capture return value **NOTE: already implemented in 1.11** ```python class SomeClass: def method(self, a): return a * 2 def facade(self): self.method(4) return 'Done' def test_some_class(mocker): spy = mocker.spy(SomeClass, 'method')...
### Описание Сейчас ни в приложении, ни в апи, нельзя получить наряду с календарём купонов календарь погашений. ### Желаемое решение Хочется примерно такую табличку: https://bonds.finam.ru/issue/details01E4000002/default.asp Например в вызове GetBondCoupons добавить...
This is a voting, please smile-react this post: 👍 — Yes, use selections. 👎 — No, export everything (current implementation). ❤️ — Export visible (soon will become current). If you...
You can clearly see here conversion of parameter to boolean type. https://github.com/aio-libs/aioes/blob/master/aioes/client/__init__.py#L133 Then it fails here https://github.com/aio-libs/yarl/blob/master/yarl/__init__.py#L673 Considering this, there's no way to use `refresh` parameter at all.