Tiny formatting tweak.

This commit is contained in:
Guido van Rossum 2007-04-25 20:45:43 +00:00
parent 809409c197
commit 5975732b4d
1 changed files with 4 additions and 2 deletions

View File

@ -120,8 +120,10 @@ commutative. If we find some, the class can be added later.::
"""Associative commutative operation, whose inverse is negation."""
raise NotImplementedError
# **Open issue:** Do we want to give people a choice of which of the
# following to define, or should we pick one arbitrarily?::
**Open issue:** Do we want to give people a choice of which of the
following to define, or should we pick one arbitrarily?::
# AdditiveGroup, continued
def __neg__(self):
"""Must define this or __sub__()."""