Kostis Anagnostopoulos

Results 80 issues of Kostis Anagnostopoulos

In `Configurable.update_config()#L214` https://github.com/ipython/traitlets/blob/4da01bfdd675783ab64a21df015e49378d91cbd2/traitlets/config/configurable.py#L206-L218 the `config` attribute is deep-cloned before `_load_config()` has the chance to validate config-values. In case of trait-errors, this clone is wasted. Was that on purpose?

I'm trying to modify the logging of errors performed by [`catch_config_error()` decorator](https://github.com/ipython/traitlets/blob/master/traitlets/config/application.py#L78-L94). I'm trying to monkey-patch it, but obviously the classes that using it, defined in `application` module, are already...

Currently (v5.0.0.dev) `launch_instance()` method invokes `start()` without returning its value: def launch_instance(cls, argv=None, **kwargs): app = cls.instance(**kwargs) app.initialize(argv) app.start() But the `start()` method by default returns the value from any...

(thank you for this project) It would be nice to release pre-built wheels for the 3 majow architectures (Linux, Windows, macOS). An problematic point is that `mdbtool` is [already taken](https://pypi.org/project/mdbtools/)...

python
help wanted

On Windows, `os.rmtree` cannot not remove directories with read-only files; such are the git db directories. The fix is something like this: ``` python ... finally: # Need to collect...

acknowledged
tag.leaks

Latest Debian uses* wayland* by default, and all programs depending on `xclip` broke!. I understand that this is an X utility, but still, if it is trivial to make it...

Adapting the quickstart example: ```python schema = { "type": "object", "properties": { "a": {"type": "number"}, "b": {"type": "number"} } } graph = Graph(schema=schema) @graph.register(inputs=['a'], outputs=['b']) def f1(a): return "Hey!" @graph.register(inputs=['b'],...

There is a use-case for having multiple nodes producing the same output. And only decide on calculation-time which path to use. Example: convert units, and have multiple input-units convert to...

It would be nice to add e method like: bigger_graph = Graph.add_subgraph(some_graph) and port all nodes from `some_graph` into `bigger_graph`.

@thecapacity In a72203a0d you change the GPL-v3 licensing of this project to Public-Domain. IANAL, but I believe you are not entitled to that, although your motives are kind. My understanding...