Spill-Tea

Results 9 issues of Spill-Tea

It would be profoundly helpful to provide a walkthrough, demonstrating how to convert common existing decorator patterns, to use the wrapt package. Take a simple case, of a decorator that...

The behavior of the initialState prop of the CircularSlider is a little odd, and goes against intuition of what the initialState should define. The internal state value is indeed modified,...

The StripedSmithWaterman class cannot be multiprocessed, because the class cannot be pickled. A `__reduce__` method is needed to support pickling, and thus multiprocessing of the class. The `__cinit__` of the...

The Audio Acquisition Frequency captures default settings of a user's device. Being able to: 1. view the assumed audio sampling rate in the app. 2. And Manually update the sampling...

This addresses #2940. The TableGenLexer can hit an infinite loop within the `codeblock` context. I also update the incorrect token Comment.SingleLine -> Comment.Single, using what is standard across pygments.

[Seven workflows](https://github.com/pygments/pygments/actions?query=is%3Acancelled) thus far have failed unit testing by timing out after 6 hours. This occurs during random testing of the lexers. Specifically the unit test: `test_basic_api.py::test_random_input`. These appear to...

**_Preface_** The current `Number` token already defines several subtypes, including `Number.Bin`, `Number.Float`, `Number.Hex`, `Number.Integer`, `Number.Integer.Long`, and `Number.Oct`. But syntax highlighters commonly color portions of numbers, identifying the number literal as...

Currently, the method to write a sample sheet from given data uses the csv.writer from python stdlib. At current, the default formatting uses the "excel" dialect. Meaning newline characters default...

rstfmt raises error to unknown option within code-block directive, that is available to sphinx documentation. ```bash docutils/utils/__init__.py", line 197, in system_message raise SystemMessage(msg, level) docutils.utils.SystemMessage: :14: (ERROR/3) Error in "code-block"...