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 vstinner
Recipients davin, paul.moore, steve.dower, tim.golden, vstinner, zach.ware
Date 2017-04-26.13:11:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493212310.47.0.871570300063.issue30169@psf.upfronthosting.co.za>
In-reply-to
Content
Current thread 0x00001644 (most recent call first):
  File "D:\buildarea\3.x.ware-win81-release\build\lib\test\_test_multiprocessing.py", line 3997 in ManagerMixin

Line 3997 is:
   Condition = property(operator.attrgetter('manager.Condition'))

I don't understand how creating operator.attrgetter() or property() object can crash? Maybe the memory was corrupted before?

Extract of _test_multiprocessing.py around this line:

class ManagerMixin(object):
    TYPE = 'manager'
    Process = multiprocessing.Process
    Queue = property(operator.attrgetter('manager.Queue'))
    JoinableQueue = property(operator.attrgetter('manager.JoinableQueue'))
    Lock = property(operator.attrgetter('manager.Lock'))
    RLock = property(operator.attrgetter('manager.RLock'))
    Semaphore = property(operator.attrgetter('manager.Semaphore'))
    BoundedSemaphore = property(operator.attrgetter('manager.BoundedSemaphore'))
    Condition = property(operator.attrgetter('manager.Condition'))
    Event = property(operator.attrgetter('manager.Event'))
    Barrier = property(operator.attrgetter('manager.Barrier'))
    Value = property(operator.attrgetter('manager.Value'))
    Array = property(operator.attrgetter('manager.Array'))
    list = property(operator.attrgetter('manager.list'))
    dict = property(operator.attrgetter('manager.dict'))
    Namespace = property(operator.attrgetter('manager.Namespace'))
History
Date User Action Args
2017-04-26 13:11:50vstinnersetrecipients: + vstinner, paul.moore, tim.golden, zach.ware, steve.dower, davin
2017-04-26 13:11:50vstinnersetmessageid: <1493212310.47.0.871570300063.issue30169@psf.upfronthosting.co.za>
2017-04-26 13:11:50vstinnerlinkissue30169 messages
2017-04-26 13:11:50vstinnercreate