Christian Heimes

Results 196 comments of Christian Heimes

I see. SELinux and systemd both treat ``/home`` as a privileged and restricted area. System services are generally not allowed to access ``/home`` tos prevents daemons from stealing ssh private...

My approach addresses the fact that the current code does too much when a test is skipped. Let's merge your simple fix to unblock main and somebody else can take...

The changeset breaks wasm32-emscripten tests. The issue is ``TestSendfile`` in ``test_os``. The entire test class is skipped because wasm32-emscripten does not have ``os.sendfile``. ``` test_flags (test.test_os.TestSendfile.test_flags) ... skipped 'test needs...

I have been looking into the issue. The current code has more problems and https://github.com/python/cpython/pull/24502 should not have been accepted in its state. The lines https://github.com/python/cpython/blob/2fa03b1b0708d5d74630c351ec9abd2aac7550da/configure.ac#L1076-L1080 are a hack that...

@encukou It's https://scan.coverity.com/projects/python nowadays.

https://github.com/blog/2042-git-2-5-including-multiple-worktrees-and-triangular-workflows#git-worktree-one-git-repository-with-multiple-working-trees

I have been using ```upstream``` and ```origin``` with the described semantic for years. It seems to be pretty standard and even the recommended way on github, too. https://help.github.com/articles/configuring-a-remote-for-a-fork/ I wonder,...

I might be able to squeeze in some time next week. If somebody else is going to beat me instead ... go ahead! I wouldn't mind.

@ncoghlan ```-b 3.6``` performs ```git checkout 3.6``` in one go. @serhiy-storchaka You can also use out-of-tree builds to build different flavors from the same checkout. I use ```ccache``` to speed...