Wilfred Hughes

Results 601 comments of Wilfred Hughes

It would be really useful to have a demo project that showcased pkglib usage. I don't have any public projects that I can reproduce this on (shouldn't be a big...

The problem is here: https://github.com/ahlmss/pkglib/blob/c456e7f4ad70771dbe1f7f6513a147bfe9ad5bc0/pkglib/pkglib/setuptools/command/egg_info.py#L130 Just catching `InstallationError` seems to be insufficient though, I just a traceback later on.

Hello! No need to apologise :) There's a lot going on in this repo. Too much I think. I think it would be clearer if pkglib-testing was a separate repo...

I was on setuptools 0.6c11, FWIW. It's old, but it's still the default on some linux distros. Since it's possible to update setuptools once you're in a virtualenv, documentation would...

FWIW, Emacs uses `/dev/urandom` if available. See the Info page for `random`, or the source code here: https://github.com/emacs-mirror/emacs/blob/master/src/sysdep.c#L2276-L2310

If you want to reseed again, you can do so like this: ```emacs-lisp (defun random-reseed-securely () "Securely reseed Emacs' random number generator." (random (shell-command "cat < /dev/urandom | fold -w32...

Uh, so I was compiling Emacs today, and noticed that this is already built-in to Emacs! https://github.com/emacs-mirror/emacs/blob/master/lisp/mouse-copy.el I really appreciate your package for helping me discover it, but perhaps it...

Commands in mouse-copy.el aren't enabled by default, but I see they're slightly different. `mouse-drag-secondary-pasting` requires you to `M-down-mouse-1` and drag the region you want, and it's inserted at point. This...