Eli Bendersky

Results 225 comments of Eli Bendersky

For the failing checks: 1. vet - you can run it from the `.github/workflows` directory locally on your machine to weed out all the failures before sending an updated PR...

Thanks for the note. We're thinking about the topic of documentation more holistically now across the different SDKs and languages; I will keep this issue open for now

Thank you for the report. Please feel free to submit a PR with a fix

You checked " Provide a description in this PR that addresses what the PR is solving, or reference the issue that it solves (e.g. Fixes #123).", but in fact it's...

PRs to fix this are welcome. Please note that the ability to generate C code back from the AST is not considered a critical capability of pycparser; while I'll accept...

I don't understand the issue. The following C program prints `abcxyz`, according to the standard: ```c #include int main() { char* str = "abc""xyz"; printf("%s\n", str); return 0; } ```...

Ah, so it's specific to octal and hex, then... PR to fix welcome, though it has to handle all cases of string literal concatenation properly

Yes, I understand My question is - can you add a test to https://github.com/eliben/pycparser/blob/main/tests/test_c_generator.py as part of your PR that triggers this behavior and verifies that the change fixes it

I like the change more but agree that the motivation remains mysterious, especially without any test case. Is this similar to what `readelf` itself is doing in a comparable code...