Erki Suurjaak

Results 59 comments of Erki Suurjaak

Same question about other Numpad keys like Insert - it seems there is no easy way with pynput to tell an ordinary Insert apart from a Numpad-Insert? They're both given...

+1 for double-click support. I know you want to keep this library as uniform as possible, but double-clicking a tray icon is a very common need. Seems it's only Linux...

From #65: > That's all the info we get from upstream, so it's hard to say. :slightly_frowning_face: Sounds like it's probably worth reopening and tracking on #141 if there are...

> If this is an an ex-Skype account with an old username, have you tried using both the Skype username and the associated Microsoft account email address / phone number...

I suppose this can be added. For example, disabled by default, with a configuration flag to enable it. However, can you hazard a guess on how much of that time...

Regarding expected failures - it depends. Files and audio/video messages are kept in Skype servers up to 30 days. And everything shared before 2017 April is no longer available anyway....

I'd like your input on whether this caching should be enabled by default or not. Reasons why enabled: - so that things work conveniently by default - so that caching...

There is a better solution: pip supports [automatic script creation](https://pythonhosted.org/setuptools/setuptools.html#automatic-script-creation). If setup.py used `entry_points` instead of `scripts`, it would create .exe files in Windows. There would need to be a...

Any chance of getting an official PyPi release any time soon? The current version there is 7 years old already, and this error in newer Pythons makes doxypypy very difficult...

One workaround would be using `GetTextExtent()` instead. In https://github.com/wxWidgets/Phoenix/blob/master/wx/lib/wordwrap.py#L27, replacing ```python pte = dc.GetPartialTextExtents(line) ``` with this instead: ```python pte = [] for c in line: pte.append(dc.GetTextExtent(c).width + (pte[-1] if...