-
# Documentation
Running sphinx-build in nit-picky mode, like:
sphinx-build -n . build/html/
or:
make html SPHINXERRORHANDLING=-n
gives tons warnings. ~8k of them at the time o…
-
I'm all in favour of typechecking in python and turn it on almost always. So in principle I love the inclusion of `py.typed` in the latest release of this library.
However, it seems that the type …
-
While I listed all the atomic requirements earlier, actual API, based on the usage requirement, can be much more simpler and efficient with only two public functions:
```
get_all_mementos(urir) ->…
-
BPO | [22000](https://bugs.python.org/issue22000)
--- | :---
Nosy | @rhettinger, @ezio-melotti, @bitdancer, @vadmium, @jimjjewett
Dependencies | bpo-12067: Doc: remove errors about mixed-type comparis…
-
## TL;DR
How can I make this code work?
```python
@beartype
def for_any_pathlike(str | os.PathLike[str]):
...
for_any_pathlike("awesome_text.txt") # it works!
for_any_pathlike(pathlib.Pa…
-
This may not be possible at all, but if so we should in fact avoid it.
-
According to the documentation `s1 - s2` returns the set of all elements that are in `s1` but not in `s2`. So what's the point of constraining `s2` elements type? I believe the correct annotation for …
-
# Good First Issue
% [`pipx install ruff `](https://pypi.org/project/pipx)
% [`ruff --select=DJ --show-source .`](https://beta.ruff.rs/docs/rules/#flake8-django-dj)
```
test_app/models.py:12:7: DJ…
-
Just upgraded my project to 4.0.0b1 (with also updating channels/daphne/etc) and started to get this error after doing a `layer.group_send` inside a django ASGI view (i.e. not a channels consumer):
…
-
So, async.
The current state is while I believe the parser handles the async language (as a pass-thru to Python, I believe), using async in xonsh is basically just raw `asyncio` with little support…