mirabilos
mirabilos
Workaround (this relies on the fix for #92 to be applied): ``` >>> text = 'foobarbazmeow' >>> html = bs4.BeautifulSoup(text, 'html.parser') >>> for e in html.find_all('div'): ... e.insert_before(html.new_tag('br')) ... >>>...
I ran into similar issues and now use it like this in my local Feediverse clone: ``` def cleanup(text): text = re.sub('\r+\n?', '\n', text) text = re.sub(' *\n *', '\n',...
The `ods.txt` file has become static asserts now, but the addition of explicit padding is still necessary: > As far as I remember not only sizes but also offsets of...
I’ve taken @glaubitz ’ last patch to make the padding explicit and updated it for the latest firebird3.0 we have in Debian. I’ve yet to test this (m68k machines are...
This has two downsides: - `alignas(alignof(int))` still aligns to 2, not 4, on m68k - `alignas` is not in C89, not even in C99
The changes from the PR should not be applied. Instead, the patch from https://github.com/FirebirdSQL/firebird/pull/217#issuecomment-2005120147 should be applied. This does not change the on-disc structure and makes the padding explicit. I...
Yes, it shows still up , together with even more error messages that are not even errors
Ah, unfortunately it seems I *cannot* retest this, as it fails to run nowadays: ``` Error: Code Scanning could not process the submitted SARIF file: rejecting SARIF, as there are...
Ah hmm. says to disable pylint and rely on pylintpython3. Which is what I want, actually.
However, this… ``` $ cat .codacy.yml --- engines: pylint: # pylintpython3 is used instead enabled: false tsqllint: # for Microsoft only enabled: false ``` … does not disable either ☹☹☹