Daniel Foerster

Results 7 comments of Daniel Foerster

@matham perhaps moving the permissions section inside a platform conditional would suffice?

@euzada do you have xdis 5.0.11?

`number_to_words()` strips out all non-numeric characters, presumably to clean up commas, while `ordinal()` accepts non-numeric numbers (i.e. 'forty') and thus cannot do that in the same way. Both functions could...

An alternative could be to subclass `RendererHTML` and override `fence()`: ```py class CustomRendererHTML(RendererHTML): def fence(self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType) -> str: token = tokens[idx] info =...

I just hit this same issue with cffi 1.16.0 on MacOS with cibw, so it's not unique to Cython.

``` python def number_to_date(engine, number): number = int(number) if number and number // 10 % 100: parts = str(number)[:-2], str(number)[-2:] return ' '.join(engine.number_to_words(part) for part in parts) else: return engine.number_to_words(number)...

If (not "since") we're waiting for accelerated rendering, I don't see why we wouldn't put the updated help in too. On Jul 3, 2017 16:52, "Celtic Minstrel" wrote: > The...