Alessandro Pisa

Results 10 comments of Alessandro Pisa

I am +100 but the default should be that in order for something to be published, a security declaration is required.

Thanks, I tried to explain my point better. It would be nice that in zope4 the deprecation will say: "This object is published because it has docstring, in Zope5 this...

@d-maurer nowadays Python has a built-in signal library and I **think** that the old `Signals` module should just go away. I already replaced succesfully `registerHandler` from the old `Signals` module...

Ok! Thanks for sharing :) Ignore my comment please!

LOL I had the same issue, this is what I came up with: ``` #!/usr/bin/env python3 from PyPDF4.generic import NameObject from PyPDF4.generic import TextStringObject from PyPDF4.pdf import PdfFileReader from PyPDF4.pdf...

Any suggestion for a future PR? Given that assertion are stripped when the `-O` flag is set is that code safe at all? See: ``` [ale@emily ~]$ cat tmp/a.py assert...

You are obviously using Python 3.10, which is not good for Plone 5.2. Check the previous messages I posted about this topic in the forum.

This is not a solution for the problem you posted but it might help. If not ignore this. I do not use any extension to access password protected repos and...

I still have it with 6.3.0 when running it with pre-commit: ``` $ cat .pre-commit-config.yaml repos: - repo: https://github.com/ansible-community/ansible-lint.git rev: v6.3.0 hooks: - id: ansible-lint files: \.(yaml|yml)$ args: [--progressive] ```

Cool :) BTW it will be more convenient to do it like this: ```python content = root / "and/now/get/some/content" ``` See what we have in pathlib: ```python >>> from pathlib...