Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (4h)  pkgsrc-2024Q1 (20d)  pkgsrc-2023Q4 (67d)  pkgsrc-2023Q2 (99d)  pkgsrc-2023Q3 (179d) 

2024-06-07 01:28:43 UTC Now

2013-07-09 16:55:42 UTC MAIN commitmail json YAML

Update py-blinker to 1.3.

Version 1.3
-----------

Released July 3, 2013

- The global signal stash behind blinker.signal() is now backed by a
  regular name-to-Signal dictionary. Previously, weak references were
  held in the mapping and ephermal usage in code like
  ``signal('foo').connect(...)`` could have surprising program behavior
  depending on import order of modules.
- blinker.Namespace is now built on a regular dict. Use
  blinker.WeakNamespace for the older, weak-referencing behavior.
- Signal.connect('text-sender') uses an alterate hashing strategy to
  avoid sharp edges in text identity.

(kleink)