This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jnoller
Recipients jnoller, ncoghlan, pitrou
Date 2008-09-01.14:03:00
SpamBayes Score 3.868196e-06
Marked as misclassified No
Message-id <BAF53CAB-E53B-4211-AA71-23C07B694001@gmail.com>
In-reply-to <1220274473.13.0.297611914604.issue3589@psf.upfronthosting.co.za>
Content
This is why multiprocessing had them nick - the threading module does

On Sep 1, 2008, at 9:07 AM, Nick Coghlan <report@bugs.python.org> wrote:

>
> Nick Coghlan <ncoghlan@gmail.com> added the comment:
>
> Interesting - in some of the other work I was doing regarding the  
> PEP 8
> compliant alternative threading API, I noticed that the threading  
> module
> contains similar gems such as:
>
> def Event(*args, **kwds):
>  return _Event(*args, **kwds)
>
> Using a factory function to discourage subclassing is one thing, but  
> why
> name the factory function as if it was a still a class?
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue3589>
> _______________________________________
History
Date User Action Args
2008-09-01 14:03:01jnollersetrecipients: + jnoller, ncoghlan, pitrou
2008-09-01 14:03:00jnollerlinkissue3589 messages
2008-09-01 14:03:00jnollercreate