Feuermurmel

Results 49 issues of Feuermurmel

The [documentation](http://choix.lum.li/en/latest/data.html#top-1-lists) states that to represent a top-1 list, a Python `list` with an integer and a Python `set` should be used. This leads to a `TypeError`: ``` % python3...

I'm proposing a feature which could mitigate the issues that affect some of the users of the "Watch for changes in the repository" feature, me included. I suggest adding an...

This is what distutils does.

Enhancement
Non-fatal
TODO

At least on OS X, it does not seem to be possible to have multiple documents open at the same time. Choosing _File_ > _New_ or _File_ > _Open …_...

feature request

Currently, changing the width of the window does noting helpful to the widths of the columns. Making the window wider will just leave the columns as-is, making it smaller will...

Feature

**Describe the bug** Trying to format the following input ([playground](https://black.vercel.app/?version=main&state=_Td6WFoAAATm1rRGAgAhARYAAAB0L-Wj4ABzAE9dAD2IimZxl1N_WlbxpEdAHHbQQCA9z0MPJOXv5O1g1hm2lu7BSR0wvSGjWfn_HWJRU8n9ho5YATiAq6l7AZf1O9lD9ZR2CC2eJ0uoT5MmCgAAANCQ26cKfyqAAAFrdGKy5_EftvN9AQAAAAAEWVo=)) with `black -l 1 --preview` leads to an error: ```python dict(a=r' ' r'') ``` ``` $ black -l 1 --preview...

T: bug
F: strings
C: preview style

**Describe the bug** Return value of custom type hook is discarded when decoding generic type in union. **To Reproduce** In the following example, a generic dataclass `Foo[T]` is defined and...

bug

**Describe the bug** It seems that custom time hooks are applied to deserialized values when hooks for union types are defined. I think this is a bug. **To Reproduce** The...

bug

See this example code, which should print "a", followed by "b", followed by the script terminating with an error: ```typescript try { print('a'); throw 'error'; } finally { print('b') }...

bug
scope: transformation

It seems that function annotated with `@noSelf` cannot be used as the comparator function of `Array.sort()`. This example demonstrates the problem: ```typescript /** @noSelf **/ function compareFn(a: number, b: number):...