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 giampaolo.rodola
Recipients davin, giampaolo.rodola, jnoller, pitrou, sbt
Date 2019-02-06.17:22:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549473735.16.0.515862791139.issue35918@roundup.psfhosted.org>
In-reply-to
Content
Related to BPO-35917:

$ ./python 
Python 3.8.0a1+ (heads/master:cd90f6a369, Feb  6 2019, 17:16:10) 
[GCC 7.3.0] on linux
>>> import multiprocessing.managers
>>> m = multiprocessing.managers.SyncManager()
>>> m.start()
>>> d = m.dict()
>>> 'has_key' in dir(d)
True
>>> d.has_key(1)
Traceback (most recent call last):
  File "/home/giampaolo/cpython/Lib/multiprocessing/managers.py", line 271, in serve_client
    fallback_func = self.fallback_mapping[methodname]
KeyError: 'has_key'
History
Date User Action Args
2019-02-06 17:22:19giampaolo.rodolasetrecipients: + giampaolo.rodola, pitrou, jnoller, sbt, davin
2019-02-06 17:22:15giampaolo.rodolasetmessageid: <1549473735.16.0.515862791139.issue35918@roundup.psfhosted.org>
2019-02-06 17:22:15giampaolo.rodolalinkissue35918 messages
2019-02-06 17:22:14giampaolo.rodolacreate