You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is actually not a stub-specific rule, but protocol methods returning None instead of object are suspect. None is meant as "The caller should not use the return value", but it actually means that any implementation must return None. (I remember we had this problem at least once. It might have been related to an ignored seek() return value.)
The text was updated successfully, but these errors were encountered:
This is actually not a stub-specific rule, but protocol methods returning
None
instead ofobject
are suspect.None
is meant as "The caller should not use the return value", but it actually means that any implementation must returnNone
. (I remember we had this problem at least once. It might have been related to an ignoredseek()
return value.)The text was updated successfully, but these errors were encountered: