Re: difference between os.fdopen and builtin open

2009-03-28 Thread Dave Angel
You've already hit the most important difference: os.open() lets you share files between processes, while the built-in doesn't have any control of that type. Another distinction is that fdopen() can be used to get a file object from a fd handle, which may be obtained some other way. For exam

difference between os.fdopen and builtin open

2009-03-28 Thread Visco Shaun
Hi I was wondering the difference between os.fdopen()(or os.open() not considering the difference in args) and builtin open(). Can anyone help me? -- Thanks & Regards visco -- http://mail.python.org/mailman/listinfo/python-list