Tal Einat
Tal Einat
I'm trying to add support for using the built-in `unittest` module for running tests. Here is the beginning of my attempt. Questions: 1. Are there additional files I should be...
Since node v10, `ReadableStream`s are async-iterable, i.e. one can do the following: ```node for await (const chunk of readable) { data += chunk; } ``` See [the docs](https://nodejs.org/dist/latest/docs/api/stream.html#stream_readable_symbol_asynciterator) for more...
This improves matching correctness when trying to match a license file to the text of a license which includes "copyright" or "trademark" verbatim in the body of the license text,...
This happens since nodes for directories don't have their "file" field initialized. New test case reproducing the error is included.
Supply wheels for Windows to make installation easier, since getting Cython and a C compiler set up on Windows is prohibitively difficult for most users. There are project templates which...
This will simplify installation: Without a published wheel, pip often builds a wheel from the sources, and then installs that wheel. Since the code here is pure-Python, building a single...
I'm specifically interested in the removal of "nose" as a dependency upon installation.
Please consider PEP 661 -- Sentinel Values https://peps.python.org/pep-0661/ * [X] The PEP has been discussed in threads listed in its `Post-History` header * [X] The PEP was announced on [Discuss](https://discuss.python.org/c/peps/19)...