Numergy / signalslot

Simple signal slot implementation in Python
http://signalslot.rtfd.org
MIT License
48 stars 14 forks source link

Fix DeprecationWarning: inspect.getargspec() #19

Closed RodneyRichardson closed 1 year ago

RodneyRichardson commented 3 years ago
signal.py:94: DeprecationWarning: inspect.getargspec() is deprecated since Python 3.0, use inspect.signature() or inspect.getfullargspec()
    inspect.getargspec(slot).keywords is None:
Sliim commented 3 years ago

This warning is fixed in #17

TTimo commented 1 year ago

this is an exception with python 3.11 (which became the default on arch a few days ago) - a bump on pypi would be nice!

jpic commented 1 year ago

Bump on pypi done!

TTimo commented 1 year ago

thank you!