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 serhiy.storchaka
Recipients berker.peksag, brett.cannon, davin, eric.snow, erik.bray, jnoller, ncoghlan, olebole, sbt, serhiy.storchaka
Date 2015-03-06.12:09:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425643793.07.0.885817297646.issue23400@psf.upfronthosting.co.za>
In-reply-to
Content
But if this change is worth, I would write it as

-            maxsize = _multiprocessing.SemLock.SEM_VALUE_MAX
+            # Can raise ImportError (see issues #3770 and #23400)
+            from .synchronize import SEM_VALUE_MAX as maxsize

This would avoid a duplication of the error message.
History
Date User Action Args
2015-03-06 12:09:53serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, ncoghlan, jnoller, erik.bray, sbt, eric.snow, berker.peksag, davin, olebole
2015-03-06 12:09:53serhiy.storchakasetmessageid: <1425643793.07.0.885817297646.issue23400@psf.upfronthosting.co.za>
2015-03-06 12:09:53serhiy.storchakalinkissue23400 messages
2015-03-06 12:09:52serhiy.storchakacreate