Skip to content

Commit

Permalink
Merge pull request #144 from pallets-eco/simplify-refs
Browse files Browse the repository at this point in the history
simplify weakref handling
  • Loading branch information
davidism authored Apr 27, 2024
2 parents 7e2c85a + 9bc4890 commit 64423df
Show file tree
Hide file tree
Showing 8 changed files with 175 additions and 608 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Unreleased
the next version.
- Show a deprecation warning for the deprecated global ``receiver_connected``
signal and specify that it will be removed in the next version.
- Greatly simplify how the library uses weakrefs. This is a significant change
internally but should not affect any public API. :pr:`144`


Version 1.7.0
Expand Down
12 changes: 6 additions & 6 deletions src/blinker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

import typing as t

from blinker.base import ANY
from blinker.base import NamedSignal
from blinker.base import Namespace
from blinker.base import Signal
from blinker.base import signal
from blinker.base import WeakNamespace
from .base import ANY
from .base import NamedSignal
from .base import Namespace
from .base import Signal
from .base import signal
from .base import WeakNamespace

__all__ = [
"ANY",
Expand Down
247 changes: 0 additions & 247 deletions src/blinker/_saferef.py

This file was deleted.

Loading

0 comments on commit 64423df

Please sign in to comment.