Karthikeyan Singaravelan

Results 129 comments of Karthikeyan Singaravelan

You can do this with click-repl package : https://github.com/click-contrib/click-repl ```python import click import typer from click_repl import repl app = typer.Typer() remote = typer.Typer() app.add_typer(remote, name="remote") @remote.command() def add(origin: str):...

I have created https://github.com/linsomniac/python-memcached/pull/178 to fix this

This seems to have been fixed in https://github.com/seung-lab/cloud-volume/commit/9e7195e410d201c98a03e3335874c8650143ec9e

This might be backwards incompatible as raising `StopIteration` is explicitly documented. Maybe the documentation can be updated to note how this differs from PEP 479. https://docs.python.org/3/library/unittest.mock.html#calling > The side_effect can...

Thanks @iritkatriel for triaging. I am okay with closing this since this was mostly to make 100% code coverage and I am not actively working on this.

I guess the docs by manually mean that ArgumentError will be raised when exit_on_error is False that can be handled. By default with exit_on_error being True self.error() which raises SystemExit...

This seems to be same as https://github.com/prkumar/uplink/issues/2 and https://docs.python.org/3/library/urllib.parse.html#urllib.parse.urljoin ``` In [46]: from urllib.parse import urljoin In [47]: urljoin("http://example.com/anything/", "anything/test") Out[47]: 'http://example.com/anything/anything/test' In [48]: urljoin("http://example.com/anything", "/anything/test") Out[48]: 'http://example.com/anything/test' In [49]:...

Can you please attach a sample script to explain the current and expected behavior? I am trying out the below where `serialize_when_none` when set to True has the field in...

I guess you should be passing data as a dictionary with field name and value. ```python from schematics.models import Model from schematics.types import StringType, ListType, DictType class LearningAims(Model): aims =...

Note: is_alive is present in both Python 2 and 3. So the change is backwards compatible with Python 2 if it's being supported.