Alex Hall
Alex Hall
I looked into the flasgger source code and found the blueprint name being set [here](https://github.com/flasgger/flasgger/blob/05e1af4c723c8d975fc37cd88c6af41387dd12e3/flasgger/base.py#L614) to `self.config.get('endpoint', 'flasgger')`. This can be configured in InstantAPI using `swagger_kwargs`: ```python InstantAPI(app, path="/api1/", swagger_kwargs={"config":...
http://127.0.0.1:5000/apidocs/ shows everything combined in one page for me.
The primary use case is to extract information from stack frames to be displayed in tracebacks or for other debugging or magic. For example it's used by [stack_data in IPython](https://github.com/ipython/ipython/pull/11886)...
I don't have a real goal with this issue, nor do I suggest using pure_eval in asteval. I just thought you'd be interested in the library. The two libraries are...
To improve the performance of printing large variables, I suggest https://github.com/alexmojaki/cheap_repr
It's not well advertised, but you can make ipython show local variables by running `%xmode Verbose`. https://ipython.readthedocs.io/en/stable/interactive/magics.html#magic-xmode ipython tracebacks will also be improved with the release of 8.0, e.g. see...
> more intelligent about which frame it prints. Surely it should print them all?
Let me be clearer. Consider this script: ```python try: 1 / 0 except: foo ``` By default it outputs: ``` Traceback (most recent call last): File "/home/alex/.config/JetBrains/PyCharm2020.2/scratches/scratch_856.py", line 6, in...
Is this up to date? The README suggests that this behaviour is optional now, but it's not clear.
This project is a fork of Python's standard library module called `multiprocessing`. But despite that, it still seems confusing that the official documentation of this project says "Welcome to multiprocessing’s...