-
Introduce a configurable rate-limit to define a maximum number of dropped files and traced processes. This is to avoid clogging caused by ransomware or fork bombs malware that we encounter every now a…
-
I suspect this is a known issue, but it just came up [on the rpy2 issue tracker](https://bitbucket.org/rpy2/rpy2/issues/385/line-magic-not-working-in-jupyter-notebook#comment-32685656). On windows, ar…
-
If I have a cell with
```
flake8_version = !flake8 --version
flake8_version
```
, then this executes fine.
However, the equivalent Python representation of it from jupytext is:
```
# %%
fla…
-
### Review Mojo's priorities
- [X] I have read the [roadmap and priorities](https://docs.modular.com/mojo/roadmap.html#overall-priorities) and I believe this request falls within the priorities.
###…
-
### Problem
API key error handling can be further improved:
> My high-level thought is that while this is a good starting point, this strategy is a little unintuitive. It requires manually detec…
-
```
What steps will reproduce the problem?
>>> a = Mock()
>>> a.this = ‘that’
>>> del a.this
>>> a.this = ‘that’
>>> del a.this
Traceback (most recent call last):
...
AttributeError: this
What is …
-
Hi
I am not able to see the AZURE providers model sin the dropdown list . Can you tell me why?
-
I tend to use IPython shell examples rather than the plain Python console, and I'd like blacken-docs to format them, e.g.
```diff
.. code-block:: ipython
- In [1]: print('Hello World')
+ …
-
[Sparse Categorical Speed](https://hub.gke.mybinder.org/user/darribas-notebooks-fynsd71b/notebooks/docs/content/model/spint/sparse_categorical_speed.ipynb)
```
spcat1a = []
for n in np.arange(25,…
-
While running this trivial example is fine:
`'{"abc", "def", "ghi"}'.replace('{','').replace('}','')`
running it with `%time` magic gives error.
`%time '{"abc", "def", "ghi"}'.replace('{','')…