John Vandenberg

Results 969 comments of John Vandenberg

Hi @SirEdvin , for smallish communities, having one bot per chat system , and then adding redis , is extra stuff to manage and/or pay for. errbot already has basic...

Also relative href should be expanded in exports.

the main workflow can be run using https://github.com/nektos/act . IMO that is more maintainable than a separate `Dockerfile`. https://github.com/adsharma/py2many/blob/main/CONTRIBUTING.md#running-tests-using-act

@MiguelMarcelino @div72 @adsharma , keen to hear any feedback on this. There are obvious improvements like making `registry.py` dynamic, which can be done later. Most important atm is any negatives...

No. I have just ignored the check type. This generating problem still occurs. A slightly better situation would be to add a per-line rule disable on the problematic lines, but...

As this removes `tests/expected/sys_argv.jl` , and doesnt add any new features, I think this isnt ready yet. Being able to support command line arguments is a critical feature.

An example of the problem needing `-Wno-null-arithmetic` is: ``` /home/runner/work/py2many/py2many/tests/build/coverage.cpp:91:9: warning: comparison between NULL and non-pointer ('int' and NULL) [-Wnull-arithmetic] if (1 != NULL) { ~ ^ ~~~~ 1 warning...

Dart has the same problem: ```py pydart/transpiler.py:144: in visit_Attribute if is_list(node.value): py2many/tracer.py:68: in is_list and is_list(var.assigned_from.value) py2many/tracer.py:68: in is_list and is_list(var.assigned_from.value) py2many/tracer.py:68: in is_list and is_list(var.assigned_from.value) E RecursionError: maximum recursion...

We should work with maintainers of adt, astor, argparse_dataclass & toposort to have typing hints added. c.f. https://github.com/adsharma/py2many/issues/179

dataclasses [`ClassVar`](https://docs.python.org/3/library/dataclasses.html#class-variables) also does not work, but this might be a good approach to introducing class variables for targets which support that.