This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(.venv) jreese@kirby ~/workspace/aioitertools master ยป pylint --version && pylint --rcfile .pylint aioitertools setup.py | |
No config file found, using default configuration | |
pylint 1.9.2, | |
astroid 1.6.5 | |
Python 3.7.0 (default, Jul 4 2018, 01:03:13) | |
[GCC 8.1.1 20180531] | |
Using config file /home/jreese/workspace/aioitertools/.pylint | |
Traceback (most recent call last): | |
File "/home/jreese/workspace/aioitertools/.venv/lib/python3.7/site-packages/astroid/decorators.py", line 89, in wrapped | |
res = next(generator) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(.venv) jreese@kirby ~/workspace/aioitertools master ยป pylint --version && pylint --rcfile .pylint aioitertools setup.py | |
No config file found, using default configuration | |
pylint 1.9.2, | |
astroid 1.6.5 | |
Python 3.6.5 (default, May 14 2018, 21:33:03) | |
[GCC 7.3.1 20180406] | |
Using config file /home/jreese/workspace/aioitertools/.pylint | |
(.venv) jreese@kirby ~/workspace/aioitertools master ยป |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(.venv) jreese@kirby ~/workspace/aioitertools master ยป pylint --version && pylint --rcfile .pylint aioitertools setup.py | |
pylint 2.0.0.dev1 | |
astroid 1.6.5 | |
Python 3.7.0 (default, Jul 4 2018, 01:03:13) | |
[GCC 8.1.1 20180531] | |
Traceback (most recent call last): | |
File "/home/jreese/workspace/aioitertools/.venv/bin/pylint", line 11, in <module> | |
sys.exit(run_pylint()) | |
File "/home/jreese/workspace/aioitertools/.venv/lib/python3.7/site-packages/pylint/__init__.py", line 18, in run_pylint | |
Run(sys.argv[1:]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(.venv) jreese@legion ~/workspace/aiosqlite master ยป make perf | |
python3 -m unittest -v tests.perf | |
Running perf tests for at least 2.0s each... | |
test_atomics (tests.perf.PerfTest) ... ok | |
test_insert_ids (tests.perf.PerfTest) ... ok | |
test_insert_macro_ids (tests.perf.PerfTest) ... ok | |
test_inserts (tests.perf.PerfTest) ... ok | |
test_select (tests.perf.PerfTest) ... ok | |
test_select_macro (tests.perf.PerfTest) ... ok |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(.venv) jreese@legion ~/workspace/aql master ยป bowler do 'Query().select_class("Operation").rename("Comparison").diff()' | |
--- ./aql/column.py | |
+++ ./aql/column.py | |
@@ -11,7 +11,7 @@ | |
@dataclass | |
-class Operation: | |
+class Comparison: | |
column: "Column" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import aiohttp | |
import logging | |
import time | |
from aiomultiprocess import core, Pool | |
async def get(url): | |
session = aiohttp.ClientSession() | |
response = await session.get(url) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from aiohttp import request | |
from aiomultiprocess import Worker | |
async def get(url): | |
async with request("GET", url) as response: | |
return await response.text("utf-8") | |
async def main(): | |
p = Worker(target=get, args=("https://jreese.sh", )) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Sphinx version: 2.0.1 | |
# Python version: 3.5.5 (CPython) | |
# Docutils version: 0.14 | |
# Jinja2 version: 2.10.1 | |
# Last messages: | |
# reading sources... [ 21%] docs/supported_ports | |
# | |
# reading sources... [ 21%] docs/troubleshooting | |
# | |
# reading sources... [ 22%] license |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(.venv) jreese@legion ~/workspace/circuitpython docs-reqsยฑ ยป make html | |
sphinx-build -b html -d _build/doctrees -c . -E -v . _build/html | |
Running Sphinx v2.0.1 | |
/Users/jreese/workspace/circuitpython/.venv/lib/python3.5/site-packages/sphinx/util/compat.py:33: RemovedInSphinx30Warni | |
ng: The config variable "source_parsers" is deprecated. Please use app.add_source_parser() API instead. | |
RemovedInSphinx30Warning) | |
/Users/jreese/workspace/circuitpython/.venv/lib/python3.5/site-packages/sphinx/util/compat.py:37: RemovedInSphinx30Warni | |
ng: app.add_source_parser() does not support suffix argument. Use app.add_source_suffix() instead. | |
app.add_source_parser(suffix, parser) | |
/Users/jreese/workspace/circuitpython/.venv/lib/python3.5/site-packages/sphinx/util/compat.py:37: RemovedInSphinx30Warni |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import signal | |
def handler(*args, **kwargs): | |
print(f"signal caught: {args} {kwargs}") | |
async def main(): | |
for i in reversed(range(15)): |