Simon Gomizelj
Simon Gomizelj
Couple things to note: - You're using `os.execl` wrong. First argument is the binary, which you have correct, the rest is argv. argv[0] should be the program you're trying to...
One last thing actually, try attach strace to the stuck vim process and see what its hanging on. It'll tell you which syscall its stuck on, which can be useful...
This [bug report](https://bugzilla.redhat.com/show_bug.cgi?id=806491) explains. > startx cannot create a new session. Sessions are tied to the audit system. Once the session identifier is set for a process, it is immutable....
Yeah, I understand and feared as much. I'll probably try and move to starting two lxdm sessions on demand on tty1 and tty2.
I'm more than willing to see through the work to get this landed, but I'd like to get some feedback before I keep diving in. Thanks for your time.
Yeah, I saw that as well. I like that change personally. What I was exploring was, instead of trying to wrap the various variations of `Http.request` (at there's now `Http.request`,...
Yeah, I just wanted an endorsement that @jamesmacaulay likes the approach before spending much time on it.
Awesome. I'll try and get this done over the weekend then.
Oooh, reviewing `-E` made me think of something. @Kodiologist might want to test how case insensitive the mangler is: https://docs.python.org/3.2/using/cmdline.html#envvar-PYTHONCASEOK
I think making `replace` return a new object is likely going to work well enough. We can be a bit more aggressive with `__slots__`, and maybe also consider backing `HyList`...