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 pitrou
Recipients barry, ethan.furman, paul.moore, pitrou, r.david.murray
Date 2013-10-21.17:55:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382378146.15.0.496501005024.issue19331@psf.upfronthosting.co.za>
In-reply-to
Content
s/should be followed/may be followed/

As an other point of reference, for a long time the synchronization classes in the threading module were actually mediated by function wrappers, e.g.:

  def Lock(*args, **kwargs):
      return _Lock(*args, **kwargs)

(this was to "discourage subclassing", IIRC)
History
Date User Action Args
2013-10-21 17:55:46pitrousetrecipients: + pitrou, barry, paul.moore, r.david.murray, ethan.furman
2013-10-21 17:55:46pitrousetmessageid: <1382378146.15.0.496501005024.issue19331@psf.upfronthosting.co.za>
2013-10-21 17:55:46pitroulinkissue19331 messages
2013-10-21 17:55:46pitroucreate