This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author joern
Recipients joern, rhettinger, serhiy.storchaka
Date 2015-05-23.09:46:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432374377.36.0.269010737779.issue23509@psf.upfronthosting.co.za>
In-reply-to
Content
> I'm closing this because the OP's original concern about wanting an in-place operation was already solved

Was it? Are you referring to http://bugs.python.org/issue13121 ?

My main concern was that += is considerably slower than .update(), kind of catching me off-guard. As you closed this, i'd be very happy if you could maybe add a note to the docs https://docs.python.org/3/_sources/library/collections.txt that points this behavior out. Maybe by changing this:

    * The multiset methods are designed only for use cases with positive values.
      The inputs may be negative or zero, but only outputs with positive values
      are created.  There are no type restrictions, but the value type needs to
      support addition, subtraction, and comparison.

    * The :meth:`elements` method requires integer counts.  It ignores zero and
      negative counts.


to this:

    * The multiset methods (``+``, ``-`` and ``+=``, ``-=``) are designed only
      for use cases with positive values.
      The inputs may be negative or zero, but only outputs with positive values
      are created.  There are no type restrictions, but the value type needs to
      support addition, subtraction, and comparison.

    * Because of the necessary additional checks for positive values, a ``c += d``
      can be considerably slower than a ``c.update(d)``.

    * The :meth:`elements` method requires integer counts.  It ignores zero and
      negative counts.
History
Date User Action Args
2015-05-23 09:46:17joernsetrecipients: + joern, rhettinger, serhiy.storchaka
2015-05-23 09:46:17joernsetmessageid: <1432374377.36.0.269010737779.issue23509@psf.upfronthosting.co.za>
2015-05-23 09:46:17joernlinkissue23509 messages
2015-05-23 09:46:16joerncreate