Florent Xicluna

Results 31 comments of Florent Xicluna

IMHO if we let the build red, it will not help for reviewing future PR. Instead, I propose to open a separate issue for the only real bug (from above):...

It's not a new bug, it already lived in the Googlecode repository. The bug is not in the core asciidoc engine: the test complains about the configuration of the "docbook45"...

Because github did not refresh the PR #27 diff, here is the web view: https://github.com/florentx/asciidoc/compare/compat26

**-edited-** unrelated change moved to PR #29

I believe that this PR is ready for final review. - `docbook45` issue was addressed thanks to @elextr feeback. - [case of the missing file](https://github.com/asciidoc/asciidoc/pull/27/files#diff-e3e643e955e862c3d0ef088dcbb2f4caL12) `barchart.py` is mitigated later with...

I've rebased the changes on current `master`

Thank you for your review. I rebased the changes on `master` after PR #31 was merged, because #31 fixes the "missing barchart.py" warning.

hello, any chance to get this merged?

Hello, I wonder if it is not already supported. Try this wrapper script `ptodoo.py`: ```python #!/usr/bin/env python3 import odooly import ptpython.repl odooly.main(interact=ptpython.repl.embed) ``` I did not try it, but according...

There's 2 ways right now to customize the timeout: - globally as `import socket; socket.setdefaulttimeout(10)` https://docs.python.org/3/library/socket.html#socket.setdefaulttimeout - or use a custom transport for XML-RPC (example: https://github.com/tinyerp/erppeek/pull/70/files#diff-81ecbf8c9a00bca173b957866c5d5a69R331) Maybe I'll add an...