In article <[email protected]>,
Peter Otten <[email protected]> wrote:
> os.fork()
> Fork a child process.
> ...
> Availability: Unix.
> """
>
> You are using the wrong operating system ;)
To be honest, this could be considered a buglet in the os module. It
really should raise:
NotImplementedError("fork() is only available on unix")
or perhaps even, as Peter suggests:
NotImplementedError("You are using the wrong operating system")
either of those would be better than AttributeError.
--
https://mail.python.org/mailman/listinfo/python-list