Wim Jeantine-Glenn
Wim Jeantine-Glenn
`dependencies.py` is logging whatever the last project of the previous for-loop was instead of the parent node.
Hello, thank you for this super useful and high-quality library! I'm wondering if there is any support for [windowed](https://boltons.readthedocs.io/en/latest/iterutils.html#boltons.iterutils.windowed_iter) with overlap, e.g. by default there is overlap of the window...
* **Minor** - The second number in the version. 7 is the most popular minor version of Python. ^ Such a claim is not aging well, and also complicating matters...
This was actually fairly trivial - on most of your puzzles it just worked. The few ones that failed are for silly reasons (e.g. in https://github.com/mjpieters/adventofcode/blob/master/2017/Day%2004.ipynb it has printed "Part...
No activity on Pull requests for years and no releases pushed to PyPI recently, and code is completely broken on recent versions of Django. Please comment here if you know...
Suppose we use attrs instances to represent graphs: ``` python >>> @attr.s ... class Node: ... val = attr.ib() ... linked_node = attr.ib(default=None) ... >>> n = Node(1) >>> attr.asdict(n)...
### Describe the bug The documented attribute [`Glacier.MultipartUpload.part_size_in_bytes`](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/glacier.html#Glacier.MultipartUpload.part_size_in_bytes) is unusable ``` >>> glacier = boto3.resource('glacier') >>> vault = glacier.Vault(account_id='...', name='...') >>> multipart_upload = vault.initiate_multipart_upload(partSize=str(1024*1024)) >>> multipart_upload.id 'GRLqOxGLGxrQemumGafYu34JL8oqqUyTjEPVstpbJqWp6DVMpW-cBfhIOsAXEUv2QbItyFTNcjaCZryaqTe6ss4grVaf' ``` ### Expected...
Trouble building in 3.11 (gcc 11.2.0 on Linux): ``` $ python setup.py --with-libyaml bdist_wheel running bdist_wheel running build running build_py warning: build_py: byte-compiling is disabled, skipping. running build_ext skipping 'yaml/_yaml.c'...
In Python-3.10+ there is [`sys.stdlib_module_names`](https://docs.python.org/3/library/sys.html#sys.stdlib_module_names) which might be useful for this app. There are currently some discrepancies: ``` >>> from isort.stdlibs.py310 import stdlib >>> from sys import stdlib_module_names >>> len(stdlib...
pip search word1 word2 Is working fine from warehouse now (the word1 and word2 is considered OR, searching within project name or summary). The view that handles it should be...