Message 319939 - Python tracker

Message319939

Author serhiy.storchaka
Recipients rhettinger, serhiy.storchaka, xtreak
Date 2018-06-19.08:38:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529397511.4.0.56676864532.issue33900@psf.upfronthosting.co.za>
In-reply-to
Content
This error is correct. It is the same as for dict.update.

>>> dict.update()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: descriptor 'update' of 'dict' object needs an argument

Perhaps you missed the difference between a descriptor and a method.
History
Date User Action Args
2018-06-19 08:38:31serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, xtreak
2018-06-19 08:38:31serhiy.storchakasetmessageid: <1529397511.4.0.56676864532.issue33900@psf.upfronthosting.co.za>
2018-06-19 08:38:31serhiy.storchakalinkissue33900 messages
2018-06-19 08:38:31serhiy.storchakacreate