Guy Rapaport

Results 24 comments of Guy Rapaport

@sambaPython24 this is the equivalent of treating every whitespace as a potential sequence of whitespaces. This is what you see in the `dog` example. The code change permits this without...

i.e. doing the change above ```diff + _d = current_dict current_dict = current_dict.setdefault(letter, {}) + if letter == " ": + current_dict[" "] = _d ``` Saves you from doing...

@Useems \> Graceful shutdown, destroy all running instances before destroying the process. What's the proper way to gracefully shutdown? `Client` has bot `logout` and `destroy`, but I can't find any...

~6 months later - still praying for it 🙏

Same here. Downgrading from `0.3.2 → 0.3.1` solved it. Adding my environment + downgrade output to show that none of my other packages changed versions, just `pyvis`: ``` > uname...

Ugh, this was impossible back at mid-2021: [https://community.atlassian.com/t5/Jira-questions/Convert-sub-task-to-issue-story-new-feature-task-using-REST-API/qaq-p/1510969](https://community.atlassian.com/t5/Jira-questions/Convert-sub-task-to-issue-story-new-feature-task-using-REST-API/qaq-p/1510969) Who knows if they managed to solve this 18 months later??

Same for trying on a fresh Python 3.9.18 venv created using miniconda: ```shell > pip install fastdup py fastdup 20:09:27 Collecting fastdup Downloading fastdup-1.44-cp39-cp39-macosx_10_14_x86_64.whl.metadata (1.4 kB) Collecting pandas (from fastdup)...

@dbickson https://github.com/visual-layer/fastdup/?tab=readme-ov-file#getting-started says: > More installation options are available [here](https://visual-layer.readme.io/docs/installation). Perhaps add [here](https://visual-layer.readme.io/docs/installation) these 3 commands as they can clarify future issue reports: ```shell uname -a python -V pip3 debug...

To be more precise - ```python # if this is my makefile's contents repro = b"""$(A): $(B) $(C) \techo egg # some comment ifneq (1, 0) $(D) $(E): $(F) \techo...

I could go on and on :) If I split the repro to 3 different statements and treat parse each one separately, the parsing works flawlessly: ```python repro_rule = b"""$(A):...