diff --git a/peps/pep-0802.rst b/peps/pep-0802.rst index 8c3e1c647e1..c67a28bb892 100644 --- a/peps/pep-0802.rst +++ b/peps/pep-0802.rst @@ -121,8 +121,12 @@ The representation and string forms of the empty set will change to ``'{/}'``. >>> repr({/}) '{/}' + >>> repr(set()) + '{/}' >>> str({/}) '{/}' + >>> str(set()) + '{/}' There will be no behavioural changes to :py:class:`set` objects.