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.
Suppose you have types A, B with instance definitions for both, and C subtyping both A and B. An instance of C will basically get an arbitrary strategy - it'll be stable across runs within a single process because of dict iteration order but will change from process to process.
Really this needs to be an error condition. If you have diamond inheritance you need to provide a more specific implementation for the more specific type.
The text was updated successfully, but these errors were encountered:
Suppose you have types A, B with instance definitions for both, and C subtyping both A and B. An instance of C will basically get an arbitrary strategy - it'll be stable across runs within a single process because of dict iteration order but will change from process to process.
Really this needs to be an error condition. If you have diamond inheritance you need to provide a more specific implementation for the more specific type.
The text was updated successfully, but these errors were encountered: