jek/blinker 1231
A fast Python in-process signal/event dispatching system.
A bloxorz solver written in Go
Modèle pour exercer vos droits RGPD
Sorcery Adventure Gamebook reloaded: Livre Dont Vous Êtes Le Héros
Simple DSL monitoring tool for Fritz!Box 7430 in Python 3
Representation of the Rubik's Cube in go-lang and partial solver
Java8 - Lab/exercises on lambda expressions ƛ
A fast Python in-process signal/event dispatching system with async support.
Recipes for Cuisine, a lightweight Chef/Puppet alternative
A movie-like Matrix rain / scroll
issue openedjek/blinker
+ /usr/bin/python3 setup.py build_sphinx -b man --build-dir build/sphinx
running build_sphinx
Running Sphinx v4.0.2
making output directory... done
WARNING: html_static_path entry '_static' does not exist
building [mo]: targets for 0 po files that are out of date
building [man]: all manpages
updating environment: [new config] 1 added, 0 changed, 0 removed
reading sources... [100%] index
/home/tkloczko/rpmbuild/BUILD/blinker-1.4/blinker/base.py:docstring of blinker.base.NamedSignal:4: WARNING: Field list ends without a blank line; unexpected unindent.
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-blinker.3 { } done
build succeeded, 2 warnings.
created time in 9 days
issue commentjek/blinker
Wheels (.whl) for this package are currently missing from PyPI. Could wheels be uploaded for the current and future releases?
Read more about the advantages of wheels to understand why generating wheel distributions are important.
To create a wheel along with source distribution:
(venv) $ pip install --upgrade pip setuptools wheel
(venv) $ python setup.py sdist bdist_wheel
# See dist/*.whl
To upload wheels:
(venv) $ pip install twine
(venv) $ twine upload dist/*
comment created time in 11 days
pull request commentjek/blinker
Support send_robust with tracebacks (similar to Django signals)
Hi, @arnavk! Are you planning to continue working on this PR ?
comment created time in 19 days
issue commentjek/blinker
Any plans on releasing ? I personally was looking for the recent addition of async signals
comment created time in 22 days
startedyackx/bloxorz
started time in a month
Representation of the Rubik's Cube in go-lang and partial solver
fork in a month
startedyackx/go-rubik
started time in a month
issue commentjek/blinker
Temporarily disable a signal in a block
As a workaround, this seems to work, there might be unexpected side effects, e.g. in a threaded environment:
from contextlib import contextmanager
def disable_signal(signal):
original_receivers = signal.receivers
signal.receivers = {}
try:
yield
finally:
signal.receivers = original_receivers
comment created time in 3 months