All Versions
32
Latest Version
Avg Release Cycle
80 days
Latest Release
1259 days ago

Changelog History
Page 3

  • v0.15.0 Changes

    March 29, 2018

    Speedups and memory usage improvements ++++++++++++++++++++++++++++++++++++++

    • ๐Ÿ‘‰ Use :ref:slots to speed up bidict attribute access and reduce memory usage. On Python 3, instantiating a large number of bidicts now uses ~57% the amount of memory that it used before, and on Python 2 only ~33% the amount of memory that it used before, in a simple but representative benchmark <https://github.com/jab/bidict/pull/56#issuecomment-368203591>__.

    • ๐Ÿ‘‰ Use weakrefs to refer to a bidict's inverse internally, no longer creating a strong reference cycle. Memory for a bidict that you create can now be reclaimed in CPython as soon as you no longer hold any references to it, rather than having to wait for the next garbage collection. See the new :ref:addendum:Bidict Avoids Reference Cycles documentation. #24 <https://github.com/jab/bidict/issues/20>__

    • Make :func:bidict.BidictBase.__eq__ significantly more speed- and memory-efficient when comparing to a non-:class:dict :class:~collections.abc.Mapping. (Mapping.__eq__()\'s inefficient implementation will now never be used.) The implementation is now more reusable as well.

    • Make :func:bidict.OrderedBidictBase.__iter__ as well as equality comparison slightly faster for ordered bidicts.

    ๐Ÿ›  Minor Bugfixes ++++++++++++++

    • :func:~bidict.namedbidict now verifies that the provided keyname and valname are distinct, raising :class:ValueError if they are equal.

    • :func:~bidict.namedbidict now raises :class:TypeError if the provided base_type is not a :class:~bidict.BidirectionalMapping.

    • If you create a custom bidict subclass whose _fwdm_cls differs from its _invm_cls (as in the FwdKeySortedBidict example from the :ref:extending:Sorted Bidict Recipes), the inverse bidirectional mapping type (with _fwdm_cls and _invm_cls swapped) is now correctly computed and used automatically for your custom bidict's :attr:~bidict.BidictBase.inverse bidict.

    Miscellaneous +++++++++++++

    • Classes no longer have to provide an __inverted__ attribute to be considered virtual subclasses of :class:~bidict.BidirectionalMapping.

    • If :func:bidict.inverted is passed an object with an __inverted__ attribute, it now ensures it is :func:callable before returning the result of calling it.

    • :func:~bidict.BidictBase.__repr__ no longer checks for a __reversed__ method to determine whether to use an ordered or unordered-style repr. It now calls the new __repr_delegate__ instead (which may be overridden if needed), for better composability.

    Minor Breaking API Changes ++++++++++++++++++++++++++

    The following breaking changes are expected to affect few if any users.

    • Split back out the :class:~bidict.BidictBase class from :class:~bidict.frozenbidict and :class:~bidict.OrderedBidictBase from :class:~bidict.FrozenOrderedBidict, reverting the merging of these in 0.14.0. Having e.g. issubclass(bidict, frozenbidict) == True was confusing, so this change restores issubclass(bidict, frozenbidict) == False.

    See the updated :ref:other-bidict-types:Bidict Types Diagram and :ref:other-bidict-types:Polymorphism documentation.

    • ๐Ÿ“‡ Rename:

      • bidict.BidictBase.fwdm โ†’ ._fwdm
      • bidict.BidictBase.invm โ†’ ._invm
      • bidict.BidictBase.fwd_cls โ†’ ._fwdm_cls
      • bidict.BidictBase.inv_cls โ†’ ._invm_cls
      • bidict.BidictBase.isinv โ†’ ._isinv

    Though overriding _fwdm_cls and _invm_cls remains supported (see :doc:extending), this is not a common enough use case to warrant public names. Most users do not need to know or care about any of these.

    • The :attr:~bidict.RAISE, :attr:~bidict.OVERWRITE, and :attr:~bidict.IGNORE duplication policies are no longer available as attributes of :class:bidict.DuplicationPolicy, and can now only be accessed as attributes of the :mod:bidict module namespace, which was the canonical way to refer to them anyway. It is now no longer possible to create an infinite chain like DuplicationPolicy.RAISE.RAISE.RAISE...

    • ๐Ÿ‘‰ Make bidict.pairs() and :func:bidict.inverted no longer importable from bidict.util, and now only importable from the top-level :mod:bidict module. (bidict.util was renamed bidict._util.)

    • Pickling ordered bidicts now requires at least version 2 of the pickle protocol. If you are using Python 3, :attr:pickle.DEFAULT_PROTOCOL is 3 anyway, so this will not affect you. However if you are using in Python 2, :attr:~pickle.DEFAULT_PROTOCOL is 0, so you must now explicitly specify the version in your :func:pickle.dumps calls, e.g. pickle.dumps(ob, 2).

  • v0.14.2 Changes

    December 06, 2017
    • โšก๏ธ Make initializing (or updating an empty bidict) from only another :class:~bidict.BidirectionalMapping more efficient by skipping unnecessary duplication checking.

    • ๐Ÿ›  Fix accidental ignoring of specified base_type argument when (un)pickling a :func:~bidict.namedbidict.

    • ๐Ÿ›  Fix incorrect inversion of some_named_bidict.inv.<fwdname>_for and some_named_bidict.inv.<invname>_for.

    • ๐Ÿ‘ Only warn when an unsupported Python version is detected (e.g. Python < 2.7) rather than raising :class:AssertionError.

  • v0.14.1 Changes

    November 28, 2017
    • ๐Ÿ›  Fix a bug introduced in 0.14.0 where hashing a :class:~bidict.frozenbidict\โ€™s inverse (e.g. f = frozenbidict(); {f.inv: '...'}) would cause an AttributeError.

    • ๐Ÿ›  Fix a bug introduced in 0.14.0 for Python 2 users where attempting to call viewitems() would cause a TypeError. #48 <https://github.com/jab/bidict/issues/48>__

  • v0.14.0 Changes

    November 20, 2017
    • ๐Ÿ›  Fix a bug where :class:~bidict.bidict\โ€™s default on_dup_kv policy was set to :attr:~bidict.RAISE, rather than matching whatever on_dup_val policy was in effect as was :ref:documented <basic-usage:Key and Value Duplication>.

    • ๐Ÿ›  Fix a bug that could happen when using Python's optimization (-O) flag that could leave an ordered bidict in an inconsistent state when dealing with duplicated, overwritten keys or values. If you do not use optimizations (specifically, skipping assert statements), this would not have affected you.

    • ๐Ÿ›  Fix a bug introduced by the optimizations in 0.13.0 that could cause a frozen bidict that compared equal to another mapping to have a different hash value from the other mapping, violating Python's object model. This would only have affected you if you were inserting a frozen bidict and some other immutable mapping that it compared equal to into the same set or mapping.

    • Add :meth:~bidict.OrderedBidictBase.equals_order_sensitive.

    • โฌ‡๏ธ Reduce the memory usage of ordered bidicts.

    • ๐Ÿ‘‰ Make copying of ordered bidicts faster.

    • ๐Ÿ‘Œ Improvements to tests and CI, including:

      • Test on Windows
      • Test with PyPy3
      • Test with CPython 3.7-dev
      • Test with optimization flags
      • Require pylint to pass

    ๐Ÿ’ฅ Breaking API Changes ++++++++++++++++++++

    ๐Ÿš€ This release includes multiple API simplifications and improvements.

    • ๐Ÿ“‡ Rename:

      • orderedbidict โ†’ :class:~bidict.OrderedBidict
      • frozenorderedbidict โ†’ :class:~bidict.FrozenOrderedBidict

    so that these now match the case of :class:collections.OrderedDict.

    The names of the :class:~bidict.bidict, :func:~bidict.namedbidict, and :class:~bidict.frozenbidict classes have been retained as all-lowercase so that they continue to match the case of :class:dict, :func:~collections.namedtuple, and :class:frozenset, respectively.

    • The ON_DUP_VAL duplication policy value for on_dup_kv has been removed. Use None instead.

    • ๐Ÿ”€ Merge :class:~bidict.frozenbidict and BidictBase together and remove BidictBase. :class:~bidict.frozenbidict is now the concrete base class that all other bidict types derive from. See the updated :ref:other-bidict-types:Bidict Types Diagram.

    • ๐Ÿ”€ Merge :class:~bidict.frozenbidict and FrozenBidictBase together and remove FrozenBidictBase. See the updated :ref:other-bidict-types:Bidict Types Diagram.

    • ๐Ÿ”€ Merge frozenorderedbidict and OrderedBidictBase together into a single :class:~bidict.FrozenOrderedBidict class and remove OrderedBidictBase. :class:~bidict.OrderedBidict now extends :class:~bidict.FrozenOrderedBidict to add mutable behavior. See the updated :ref:other-bidict-types:Bidict Types Diagram.

    • Make :meth:~bidict.OrderedBidictBase.__eq__ always perform an order-insensitive equality test, even if the other mapping is ordered.

    Previously, :meth:~bidict.OrderedBidictBase.__eq__ was only order-sensitive for other OrderedBidictBase subclasses, and order-insensitive otherwise.

    Use the new :meth:~bidict.OrderedBidictBase.equals_order_sensitive method for order-sensitive equality comparison.

    • orderedbidict._should_compare_order_sensitive() has been removed.

    • frozenorderedbidict._HASH_NITEMS_MAX has been removed. Since its hash value must be computed from all contained items (so that hash results are consistent with equality comparisons against unordered mappings), the number of items that influence the hash value should not be limitable.

    • ๐Ÿ‘‰ frozenbidict._USE_ITEMSVIEW_HASH has been removed, and frozenbidict.compute_hash() now uses collections.ItemsView._hash() to compute the hash always, not just when running on PyPy.

    Override frozenbidict.compute_hash() to return hash(frozenset(iteritems(self))) if you prefer the old default behavior on CPython, which takes linear rather than constant space, but which uses the frozenset_hash routine (implemented in setobject.c) rather than the pure Python ItemsView._hash() routine.

    • ๐Ÿšš loosebidict and looseorderedbidict have been removed. A simple recipe to implement equivalents yourself is now given in :ref:extending:OverwritingBidict Recipe.

    • Rename FrozenBidictBase._compute_hash() โ†’ frozenbidict.compute_hash().

    • ๐Ÿ“‡ Rename DuplicationBehavior โ†’ :class:~bidict.DuplicationPolicy.

    • ๐Ÿ“‡ Rename:

      • bidict.BidictBase._fwd_class โ†’ .fwd_cls
      • bidict.BidictBase._inv_class โ†’ .inv_cls
      • bidict.BidictBase._on_dup_key โ†’ :attr:~bidict.BidictBase.on_dup_key
      • bidict.BidictBase._on_dup_val โ†’ :attr:~bidict.BidictBase.on_dup_val
      • bidict.BidictBase._on_dup_kv โ†’ :attr:~bidict.BidictBase.on_dup_kv
  • v0.13.1 Changes

    March 15, 2017
    • ๐Ÿ›  Fix regression introduced by the new :meth:~bidict.BidirectionalMapping.__subclasshook__ functionality in 0.13.0 so that issubclass(OldStyleClass, BidirectionalMapping) once again works with old-style classes, returning False rather than raising :class:AttributeError #41 <https://github.com/jab/bidict/pull/41>__
  • v0.13.0 Changes

    January 19, 2017
    • ๐Ÿ‘Œ Support Python 3.6.

    (Earlier versions of bidict should work fine on 3.6, but it is officially supported starting in this version.)

    • :class:~bidict.BidirectionalMapping has been refactored into an abstract base class, following the way :class:collections.abc.Mapping works. The concrete method implementations it used to provide have been moved into a new BidictBase subclass.

    :class:~bidict.BidirectionalMapping now also implements :meth:~bidict.BidirectionalMapping.__subclasshook__, so any class that provides a conforming set of attributes (enumerated in :attr:~bidict.BidirectionalMapping._subclsattrs) will be considered a :class:~bidict.BidirectionalMapping subclass automatically.

    • OrderedBidirectionalMapping has been renamed to OrderedBidictBase, to better reflect its function. (It is not an ABC.)

    • A new FrozenBidictBase class has been factored out of :class:~bidict.frozenbidict and :class:frozenorderedbidict <bidict.FrozenOrderedBidict>. This implements common behavior such as caching the result of __hash__ after the first call.

    • The hash implementations of :class:~bidict.frozenbidict and :class:frozenorderedbidict <bidict.FrozenOrderedBidict>. have been reworked to improve performance and flexibility. :class:frozenorderedbidict <bidict.FrozenOrderedBidict>\โ€™s hash implementation is now order-sensitive.

    See frozenbidict._compute_hash() and frozenorderedbidict._compute_hash for more documentation of the changes, including the new frozenbidict._USE_ITEMSVIEW_HASH and frozenorderedbidict._HASH_NITEMS_MAX attributes. If you have an interesting use case that requires overriding these, or suggestions for an alternative implementation, please share your feedback <https://gitter.im/jab/bidict>__.

    • Add _fwd_class and _inv_class attributes representing the backing :class:~collections.abc.Mapping types used internally to store the forward and inverse dictionaries, respectively.

    This allows creating custom bidict types with extended functionality simply by overriding these attributes in a subclass.

    See the new :doc:extending documentation for examples.

    • Pass any parameters passed to :meth:~bidict.bidict.popitem through to _fwd.popitem for greater extensibility.

    • More concise repr strings for empty bidicts.

    e.g. bidict() rather than bidict({}) and orderedbidict() rather than orderedbidict([]).

    • โž• Add :attr:bidict.compat.PYPY and remove unused bidict.compat.izip_longest.
  • v0.12.0 Changes

    July 03, 2016
    • ๐Ÿ†• New/renamed exceptions:

      • :class:~bidict.KeyDuplicationError
      • :class:~bidict.ValueDuplicationError
      • :class:~bidict.KeyAndValueDuplicationError
      • :class:~bidict.DuplicationError (base class for the above)
    • :func:~bidict.bidict.put now accepts on_dup_key, on_dup_val, and on_dup_kv keyword args which allow you to override the default policy when the key or value of a given item duplicates any existing item's. These can take the following values:

      • :attr:~bidict.RAISE
      • :attr:~bidict.OVERWRITE
      • :attr:~bidict.IGNORE

    on_dup_kv can also take ON_DUP_VAL.

    If not provided, :func:~bidict.bidict.put uses the :attr:~bidict.RAISE policy by default.

    • ๐Ÿ†• New :func:~bidict.bidict.putall method provides a bulk :func:~bidict.bidict.put API, allowing you to override the default duplication handling policy that :func:~bidict.bidict.update uses.

    • โšก๏ธ :func:~bidict.bidict.update now fails clean, so if an :func:~bidict.bidict.update call raises a :class:~bidict.DuplicationError, you can now be sure that none of the given items was inserted.

    Previously, all of the given items that were processed before the one causing the failure would have been inserted, and no facility was provided to recover which items were inserted and which weren't, nor to revert any changes made by the failed :func:~bidict.bidict.update call. The new behavior makes it easier to reason about and control the effects of failed :func:~bidict.bidict.update calls.

    The new :func:~bidict.bidict.putall method also fails clean.

    Internally, this is implemented by storing a log of changes made while an update is being processed, and rolling back the changes when one of them is found to cause an error. This required reimplementing :class:orderedbidict <bidict.OrderedBidict> on top of two dicts and a linked list, rather than two OrderedDicts, since :class:~collections.OrderedDict does not expose its backing linked list.

    • :func:orderedbidict.move_to_end() <bidict.OrderedBidict.move_to_end> now works on Python < 3.2 as a result of the new :class:orderedbidict <bidict.OrderedBidict> implementation.

    • โž• Add

      • :func:bidict.compat.viewkeys
      • :func:bidict.compat.viewvalues
      • :func:bidict.compat.iterkeys
      • :func:bidict.compat.itervalues
      • bidict.compat.izip
      • bidict.compat.izip_longest

    to complement the existing :func:~bidict.compat.iteritems and :func:~bidict.compat.viewitems compatibility helpers.

    • More efficient implementations of bidict.pairs(), :func:~bidict.inverted, and :func:~bidict.BidictBase.copy.

    • Implement :func:~bidict.BidictBase.__copy__ for use with the :mod:copy module.

    • ๐Ÿ›  Fix issue preventing a client class from inheriting from loosebidict. #34 <https://github.com/jab/bidict/issues/34>__

    • โž• Add benchmarking to tests.

    • โฌ‡๏ธ Drop official support for CPython 3.3. (It may continue to work, but is no longer being tested.)

    ๐Ÿ’ฅ Breaking API Changes ++++++++++++++++++++

    • ๐Ÿ“‡ Rename KeyExistsException โ†’ :class:~bidict.KeyDuplicationError and ValueExistsException โ†’ :class:~bidict.ValueDuplicationError.

    • When overwriting the key of an existing value in an :class:orderedbidict <bidict.OrderedBidict>, the position of the existing item is now preserved, overwriting the key of the existing item in place, rather than moving the item to the end. This now matches the behavior of overwriting the value of an existing key, which has always preserved the position of the existing item. (If inserting an item whose key duplicates that of one existing item and whose value duplicates that of another, the existing item whose value is duplicated is still dropped, and the existing item whose key is duplicated still gets its value overwritten in place, as before.)

    For example:

    .. code:: python

     >>> from bidict import orderedbidict  # doctest: +SKIP
     >>> o = orderedbidict([(0, 1), (2, 3)])  # doctest: +SKIP
     >>> o.forceput(4, 1)  # doctest: +SKIP
    

    previously would have resulted in:

    .. code:: python

     >>> o  # doctest: +SKIP
     orderedbidict([(2, 3), (4, 1)])
    

    but now results in:

    .. code:: python

     >>> o  # doctest: +SKIP
     orderedbidict([(4, 1), (2, 3)])
    
  • v0.11.0 Changes

    February 05, 2016
    • โž• Add :class:orderedbidict <bidict.OrderedBidict>, looseorderedbidict, and :class:frozenorderedbidict <bidict.FrozenOrderedBidict>.

    • โž• Add :doc:code-of-conduct.

    • โฌ‡๏ธ Drop official support for pypy3. (It still may work but is no longer being tested. Support may be added back once pypy3 has made more progress.)

  • v0.10.0 Changes

    December 23, 2015
    • โœ‚ Remove several features in favor of keeping the API simpler and the code more maintainable.

    • 0๏ธโƒฃ In the interest of protecting data safety more proactively, by default bidict now raises an error on attempting to insert a non-unique value, rather than allowing its associated key to be silently overwritten. See discussion in #21 <https://github.com/jab/bidict/issues/21>__.

    • ๐Ÿ†• New :meth:~bidict.bidict.forceupdate method provides a bulk :meth:~bidict.bidict.forceput operation.

    • ๐Ÿ›  Fix bugs in :attr:~bidict.bidict.pop and :attr:~bidict.bidict.setdefault which could leave a bidict in an inconsistent state.

    ๐Ÿ’ฅ Breaking API Changes ++++++++++++++++++++

    • Remove bidict.__invert__, and with it, support for the ~b syntax. Use :attr:~bidict.BidictBase.inv instead. #19 <https://github.com/jab/bidict/issues/19>__

    • โœ‚ Remove support for the slice syntax. Use b.inv[val] rather than b[:val]. #19 <https://github.com/jab/bidict/issues/19>__

    • โœ‚ Remove bidict.invert. Use :attr:~bidict.BidictBase.inv rather than inverting a bidict in place. #20 <https://github.com/jab/bidict/issues/20>__

    • Raise ValueExistsException when attempting to insert a mapping with a non-unique key. #21 <https://github.com/jab/bidict/issues/21>__

    • ๐Ÿ“‡ Rename collapsingbidict โ†’ loosebidict now that it suppresses ValueExistsException rather than the less general CollapseException. #21 <https://github.com/jab/bidict/issues/21>__

    • ๐Ÿ‘€ CollapseException has been subsumed by ValueExistsException. #21 <https://github.com/jab/bidict/issues/21>__

    • :meth:~bidict.bidict.put now raises KeyExistsException when attempting to insert an already-existing key, and ValueExistsException when attempting to insert an already-existing value.

  • v0.10.0.post1 Changes

    December 23, 2015
    • ๐Ÿ“š Minor documentation fixes and improvements.