Miro Hrončok

Results 305 comments of Miro Hrončok

> I'm not sure why it's been dropped, will follow that up with our Python maintainers Because I assumed this has been solved in mod_wsgi 4.9.1.

Apparently, this has something to do with [bracketed paste mode](https://cirw.in/blog/bracketed-paste) which has been enabled by default in Bash 5.1.

Most likely a problem in pexpect https://github.com/pexpect/pexpect/issues/669

In Fedora, I've applied this workaround: ``` echo "set enable-bracketed-paste off" > .inputrc export INPUTRC=$PWD/.inputrc ``` Since pexpect is used in tests only, I know that this is *safe*: Users...

Somehow. We have a workaround: ``` sed -i -e "1s\|#!.*python.*\|#!/usr/bin/python3\|" test/prog scripts/* sed -i -e "s\|python \|python3 \|" test/test.py ``` This makes sure that our packaged python3-argparse RPM is only...

I think that it's worth pursuing for multiple reasons\*, however I'm not sure if this is the best way. I haven't yet read the code and will not have the...

> For a little bit context, `ast.dump()` now omits optional fields/attributes from the output, most of them looks like related with it. https://bugs.python.org/issue36287 https://github.com/python/cpython/pull/18843

This gets the failures down to 13: ```patch diff --git a/lib/astunparse/printer.py b/lib/astunparse/printer.py index 92d64f7..0a29fbb 100644 --- a/lib/astunparse/printer.py +++ b/lib/astunparse/printer.py @@ -19,6 +19,7 @@ class Printer(ast.NodeVisitor): self.f.write(six.text_type(text)) def generic_visit(self, node): +...

With a check for `None`, the fix (workaround?) is complete. I'll submit a PR.