docs: update Changelog.

This commit is contained in:
David Wilson 2019-08-08 10:55:00 +00:00
parent ecc570cbda
commit 50b2d590fd
2 changed files with 13 additions and 0 deletions

View File

@ -224,6 +224,7 @@ def start_containers(containers):
"docker rm -f %(name)s || true" % container,
"docker run "
"--rm "
"--cpuset-cpus 0,1 "
"--detach "
"--privileged "
"--cap-add=SYS_PTRACE "

View File

@ -165,6 +165,18 @@ Core Library
buffer management when logging lines received from a child's redirected
standard IO.
* `49a6446a <https://github.com/dw/mitogen/commit/49a6446a>`_: the
:meth:`empty` method of :class:`mitogen.core.Latch`,
:class:`mitogen.core.Receiver` and :class:`mitogen.select.Select` has been
replaced by a more general :meth:`size` method. :meth:`empty` will be removed
in Mitogen 0.3
* `ecc570cb <https://github.com/dw/mitogen/commit/ecc570cb>`_: previously
:meth:`mitogen.select.Select.add` would enqueue a single wake event when
adding an existing receiver, latch or subselect that contained multiple
buffered items, causing future :meth:`get` calls to block or fail even though
data existed that could be returned.
Thanks!
~~~~~~~