[python-uk] Job: Software Developer - Mobile and Web apps at University of Oxford (Python/Django/JS/Objective-C/Java)

2015-01-07 Thread Theodore Koterwas
Hi There We're currently seeking an experienced software developer to join the Mobile and Web App development team in IT Services. We're a small team working with departments, academics and researchers to build web and mobile apps that make interacting with the University and its collections, t

[python-uk] Question from uniq dojo about fileinput

2015-01-07 Thread Tom Viner
Hi all, So before the London dojo meets again tomorrow night I wanted to resolve a question from last month. The task last month was to make our own GNU uniq commands. After the dojo I got our team's code working with the fileinput module . This a

Re: [python-uk] Question from uniq dojo about fileinput

2015-01-07 Thread Stestagg
When I try to run it, I get a hang too, in my case (there may be other factors for you) what's happening is because of the openpty stuff. In the parent process, you're creating two file handles, master and slave. Subprocess then forks, meaning the child inherits them. At this point, both the pare

Re: [python-uk] Question from uniq dojo about fileinput

2015-01-07 Thread Stestagg
So, I was running this in python2.7, hence the tracebacks and decoding issues. However I think the blocking issue is still to do with not closing the slave half of the pty from the parent process. On Wed Jan 07 2015 at 11:30:00 PM Stestagg wrote: > When I try to run it, I get a hang too, in my