Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #28319
| Newsgroups | comp.lang.python |
|---|---|
| Date | 2012-09-02 13:56 -0700 |
| References | <229067cc-dee6-4f0c-bcf2-c30f20b4a9be@googlegroups.com> <58eb1290-dbdc-4b89-b03f-d4efd125a132@googlegroups.com> <97cb2e8e-1b62-4096-a0af-6aa8fae2d1e8@googlegroups.com> |
| Message-ID | <fa863fb0-0c05-4901-ad65-cb98e8efe3f8@googlegroups.com> (permalink) |
| Subject | Re: PipeController v0.1 - experimental tool to simulate simple UNIX-style pipes in Python |
| From | vasudevram <vasudevram@gmail.com> |
On Monday, September 3, 2012 1:05:03 AM UTC+5:30, vasudevram wrote: > > To Ian Kelly: > > No, that deals with actual Unix pipes. This appears to be about pipelined > > processing within a single program and not IPC; the description "Unix-like" > > is a bit misleading, IMO. > I guess it can be interpreted as a bit misleading, but it was not intentionally so. The way I meant it was that PipeController tries to achieve _roughly_ similar functionality, of composing a program out of components, as UNIX pipes do. To Ian again: Also, I used the word "synchronous" somewhat deliberately (see in my blog post: "PipeController is a tool to experiment with a simple, sequential, synchronous simulation of UNIX-style pipes in Python."). I used the word synchronous to indicate that my PipeController implementation runs the functions one after another (for each item in the input), in contrast to actual Unix pipes, where the different commands in a pipeline can, and IIRC, do, run in parallel / asynchronously, with their IPC being coordinated / managed by the kernel and shell.
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
PipeController v0.1 - experimental tool to simulate simple UNIX-style pipes in Python vasudevram <vasudevram@gmail.com> - 2012-08-30 14:57 -0700
Re: PipeController v0.1 - experimental tool to simulate simple UNIX-style pipes in Python Ramchandra Apte <maniandram01@gmail.com> - 2012-09-01 08:32 -0700
Re: PipeController v0.1 - experimental tool to simulate simple UNIX-style pipes in Python vasudevram <vasudevram@gmail.com> - 2012-09-02 12:35 -0700
Re: PipeController v0.1 - experimental tool to simulate simple UNIX-style pipes in Python vasudevram <vasudevram@gmail.com> - 2012-09-02 13:56 -0700
csiph-web