Felix S.
Felix S.
The `SyntaxError` type is reserved for errors raised by the host runtime (i.e. JavaScript), not errors raised by user code. Using `SyntaxError` to signal errors in inputs to the Lua...
(cribbed from `README.md`) Unlike strings in JavaScript, Lua strings are not Unicode strings, but bytestrings (sequences of 8-bit values); likewise, implementations of Lua parse the source code as a sequence...
The design of matching rules in the `formfiller` module seems very ill-matched with how websites tend to construct their login forms, to the point where I'm not sure if anybody...
Excerpt from `fsck(8)`: ``` The exit code returned by fsck is the sum of the following conditions: 0 No errors 1 Filesystem errors corrected 2 System should be rebooted 4...
Follow-up to , where I brought up many of the same examples. [ECMA-262 12th Ed. §9.9.2][sec-liveness] defines liveness of objects as follows: > For some set of objects _S_, a...
``` $ python2 extract.py vol2a.pdf vol2b.pdf Processing page 1 [...] Processing page 670 Processing page 671 Processing page 672 Writing to html/Intel® 64 and IA.html Traceback (most recent call last):...
Something like `git hub issue vote $number $reaction` to add a reaction below the issue. Proposed keywords (chosen mainly for brevity): - `up`: 👍 - `down`: 👎 - `love`: ❤️...
### Checklist - [X] I'm reporting a new site support request - [X] I've verified that I'm running yt-dlp version **2022.03.08.1**. ([update instructions](https://github.com/yt-dlp/yt-dlp#update)) - [X] I've checked that all provided...
```python import warnings import asyncio async def spam(): with warnings.catch_warnings(record=True) as ws: await asyncio.sleep(0.1) w = Warning("12345") warnings.warn(w) assert w in (ww.message for ww in ws) async def ham(): with...
This corrects the basically non-functional escaping scheme. An `--` argument is added to prevent misinterpreting an initial `-` as an option character. Curly and square brackets (and backslashes) are additionally...