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
In the subsection describing singletons in unions, widely used object() example is described as a singleton, but it isn't one. It should be clearly stated that the problem for typing system is that this instance is not a singleton, that's why Enum is needed.
_empty = object() works with is check, because identity of _empty doesn't leak outside of module. There is nothing singleton about that. Typing spec can allow requiring _empty to be one, to allow use with is, but that should be clear it's the case.
The text was updated successfully, but these errors were encountered:
In the subsection describing singletons in unions, widely used
object()
example is described as a singleton, but it isn't one. It should be clearly stated that the problem for typing system is that this instance is not a singleton, that's whyEnum
is needed._empty = object()
works withis
check, because identity of_empty
doesn't leak outside of module. There is nothing singleton about that. Typing spec can allow requiring_empty
to be one, to allow use withis
, but that should be clear it's the case.The text was updated successfully, but these errors were encountered: