Quentin Peter
Quentin Peter
For reference, with #15372 you would need to: ```python from spyder_kernels.spydercustomize import _profile_call line = "print('test')" def prof_func(profile_filename): """Profile selection.""" ipython_shell = get_ipython() global_ns = ipython_shell.user_ns local_ns = ipython_shell.context_locals() return...
For scientific software you might work with large numbers. Forbidding exponential notation might mean adding 300 insignificant digits to your json file. Worst case your file could be composed of...
That is strange. Maybe you have several versions of PyQt5 installed? Unfortunately we can't use `super()` because of python 2
I think magic are only valid in .ipy files, because if you use magics in your file, then it is not a python file, but a ipython file. You can...
I am not sure I follow: ``` b = [1, 2] for a in b: #%% print(a) ``` runs fine for me both in spyder and with python3. `#%%` is...
Do you have an example of code that would do that?
If you can reproduce I would be interested to see the code that triggers this behaviour. Usually I would just use the console to write magics. I never had a...
The "TypeError: unsupported operand type(s) for +: 'int' and 'str'" should be fixed by https://github.com/spyder-ide/spyder-kernels/pull/467 so point 2) should not happen in master?
for point 1) https://github.com/spyder-ide/spyder-kernels/pull/476 will send the correct error which is maybe a cloud pickle issue
Could you try with https://github.com/spyder-ide/spyder-kernels/pull/492 ?