Tobias Franz

Results 6 comments of Tobias Franz

Hi @carljm, actually yes, **BUT** I've now updated my conda base from 2019.03 to 2019.10 and python 3.7.3 to 3.7.5 And what should I say: The problem still exists in...

Hi @carljm , It looks like, that the CallTracer just logs nothing for any reason... ```python class CallTraceStoreLogger(CallTraceLogger): """A CallTraceLogger that stores logged traces in a CallTraceStore.""" def __init__(self, store:...

Did the same today, wanted to update packages from pip which are not in conda. So the problem was the following: The package in PYPI ist listed as ruamel-yaml, in...

Actually should not work, because it is not designed to. If in jupyter notebook you could do following: ### Cell1: ``` fn="test.py" with open(fn, "w") as f: f.write( """from concurrent.futures...

The solution would be something like: ```diff pyasciinet/asciinet/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyasciinet/asciinet/__init__.py b/pyasciinet/asciinet/__init__.py index 1a81b84..e9c3659 100644 --- a/pyasciinet/asciinet/__init__.py +++ b/pyasciinet/asciinet/__init__.py @@...