Kay Hayen

Results 23 issues of Kay Hayen

### General comment: I took over maintenance of the Nuitka Anaconda package. I noticed that it needs to depend on the specific Python version, mostly due to vendoring going on,...

question

For Linux, in 1.9 we added a limiting of packages from PyPI to the Python paths, to avoid including system DLLs that are not needed. For macOS a similar need...

bug

For 1.9 the `isExtensionModule` as used by `--list-package-dlls` can only decide if the Python entry point is there for Linux and macOS, but not for Windows, or FreeBSD. I am...

enhancement

This issue is to keep track of the things needed to enhance Nuitka develop even further for all @Nuitka/nuitka-pushers to collaborate. Mid term goal is to enable non @kayhayen to...

enhancement

Hello, I am using isort as part of Nuitka's autoformat. A user contributed this test code for Nuitka, which presented interesting challenges and I think does for isort too: ```...

### Describe the bug I am trying to revert to an approach where I compare the output created by sphinx for changes I do not want. I have had some...

Bug
Help Wanted

Hello, this is another regression that I have with 0.6.5 still: [testcase.zip](https://github.com/PyCQA/redbaron/files/734594/testcase.zip) There is a comment in the middle of the try statement. Not sure if it's at fault. >...

This is from CPython 2.7 test suite, "test_posix.py", the markup won't allow me to put the precise code here, but for this example: ``` if __name__ == '__main__': test_main() ```...

This code crashes Redbaron: ``` def match_multiline(self, text, delimiter, in_state, style): """Do highlighting of multi-line strings. ``delimiter`` should be a ``QRegExp`` for triple-single-quotes or triple-double-quotes, and ``in_state`` should be a...

Hello, this crashes RedBaron: [1 for d in e, f for g in h ] Removing the ",f" seems to make it work as do braces around "e, f", but...