Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simplify weakref handling #144

Merged
merged 1 commit into from
Apr 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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