Jürgen Gmach
Jürgen Gmach
# Reproduction ``` git clone .. cd .. tox -e py39 ``` This creates a `test.zip` in the local source tree, which is not git-ignored. ## Suggestions - use https://docs.pytest.org/en/latest/how-to/tmp_path.html...
I just read through the chapter 8 of the Zope developer book "Security" (https://zope.readthedocs.io/en/latest/zdgbook/Security.html), and I could not find any mention of what adding or leaving out **docstrings** do to...
Hi, with Zope 2 some symbols were readily available for use - even without importing them. I recall `DateTime` and maybe others. (`test`?) While this always confused me, and I...
I ran python-modernize on a legacy code base and it turned `result = filter(lambda item: True if item.get_license_number_minor() == self.get_license_number_minor() else False, license_list)` into `result = [item for item in...
Hi, here you can read: https://docs.conda.io/projects/conda/en/latest/user-guide/concepts/packages.html#conda-file-format > The .conda file format was introduced in conda 4.7 as a more compact, and thus faster, alternative to a tarball. But it is...
The current documentation of `append` shows this example: ``` >>> parser = argparse.ArgumentParser() >>> parser.add_argument('--foo', action='append') >>> parser.parse_args('--foo 1 --foo 2'.split()) Namespace(foo=['1', '2']) ``` Working then with `foo`, which indeed...
When I ran `tox` for `zopefoundation/z3c.evalexception` I got the following deprecation warning: ``` about to run tox for zopefoundation/z3c.evalexception, 158 of 287 /home/jugmac00/All/output_zope/zopefoundation/z3c.evalexception/.tox/4/py36/lib/python3.6/site-packages/paste/urlparser.py:10: DeprecationWarning: the imp module is deprecated in...
When reviewing a pull request with changed secrets, it is very cumbersome to check the differences. It would be awesome if batou provided something like `batou secrets diff HEAD~` (although...
``` ❯ ./batou deploy staging Removing expired path: .batou/42f59059 ... Creating venv ... /home/jugmac00/Projects/bliss_deployment/./batou:78: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or...
``` ./batou deploy staging ... Traceback (most recent call last): File "/home/jugmac00/Projects/apisweb.batou/.batou/unclean/bin/batou", line 33, in sys.exit(load_entry_point('batou==2.2.2', 'console_scripts', 'batou')()) File "/home/jugmac00/Projects/apisweb.batou/.batou/unclean/lib/python3.10/site-packages/batou/main.py", line 149, in main args.func(**func_args) File "/home/jugmac00/Projects/apisweb.batou/.batou/unclean/lib/python3.10/site-packages/batou/deploy.py", line 268, in...