wellitecho

Results 32 comments of wellitecho

#214 Maybe we should dynamically decide what the encoding of the file is? I'm aware of the '--encoding' option, yet it seemed not so ergonomic.

A minimal setup to reproduce the error(simply copy/paste this into a .py file and save with encoding 'utf-8'): ```python import pysnooper """ 长注释 this block comment with Chinese characters caused...

@alan-barzilay I am using the Python bundled with the Anaconda distribution, which, as I checked now, is Python version 3.8.5

@alan-barzilay there is no Python 2 installed in my OS; and the default encoding of my .py files is utf-8. So as I mentioned, the bug arises when a utf-8...

I ran into this issue just now, and resolved it by doing [what riverar suggested](https://github.com/microsoft/windows-rs/issues/1294#issuecomment-963417891)

For my specific case, I resort to use Python, [openpyxl](https://openpyxl.readthedocs.io/en/stable/), [openpyxl-image-loader](https://github.com/ultr4nerd/openpyxl-image-loader) to get images in .xlsx files. But openpyxl-image-loader only works when one image is contained in a cell. If...

To scratch my own itch, I write [this small lib](https://github.com/wellitecho/lib_xlsx_img_loader) to retrieve a map of `{sheetname: {(col, row), imgpath}` It's not efficient, but it did the work. Still hope this...

Well, sorry if I didn't make it clear. Actually when testing, every time the dialog pops up, I **immediately** double-click a file and the dialog closes, THEN the window freezes,...

Yes, I ran the code posted here and it is reproduced. Maybe I should record the screen and post it somewhere for you to take a look.

I uploaded it [here](https://imgur.com/a/PNWHfE0). The problem will not show every time. Edit: you can see from the screenshot that after the dialog closed, the window became unresponsive, and the TextDisplay...