From ca35dc774df9c79a57facf42f0fa7d73a4985a1d Mon Sep 17 00:00:00 2001 From: jquast Date: Wed, 27 Aug 2014 23:28:05 -0700 Subject: add to changelog --- doc/history.rst | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'doc') diff --git a/doc/history.rst b/doc/history.rst index 0da6c6e..a09f124 100644 --- a/doc/history.rst +++ b/doc/history.rst @@ -4,6 +4,11 @@ History Releases -------- +Version 3.4 +``````````` +* Fixed regression when executing pexpect with some prior releases of + the multiprocessing module where stdin has been closed (:ghissue:`86`). + Version 3.3 ``````````` -- cgit v1.2.1 From 499bd1105161f0bb48a880af56652f7f21135db8 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 5 Jul 2014 12:37:02 -0700 Subject: Document asyncio integration --- doc/history.rst | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'doc') diff --git a/doc/history.rst b/doc/history.rst index a09f124..ec1c9c3 100644 --- a/doc/history.rst +++ b/doc/history.rst @@ -4,6 +4,15 @@ History Releases -------- +Version 4.0 +``````````` + +* Integration with :mod:`asyncio`: passing ``async=True`` to :meth:`~.expect`, + :meth:`~.expect_exact` or :meth:`~.expect_list` will make them return a + coroutine. You can get the result using ``yield from``, or wrap it in an + :class:`asyncio.Task`. This allows the event loop to do other things while + waiting for output that matches a pattern. + Version 3.4 ``````````` * Fixed regression when executing pexpect with some prior releases of -- cgit v1.2.1