From: Victor Stinner Date: Tue, 17 Jun 2014 21:37:35 +0000 (+0200) Subject: (Merge 3.4) Issue #21723: asyncio.Queue: support any type of number (ex: float) X-Git-Tag: v3.5.0a1~1443^2~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=adc7bcb93ad224563b1795c83c850e213f3b0455;p=python (Merge 3.4) Issue #21723: asyncio.Queue: support any type of number (ex: float) for the maximum size. Patch written by Vajrasky Kok. --- adc7bcb93ad224563b1795c83c850e213f3b0455 diff --cc Misc/NEWS index 38527f9a1e,6e333a4944..b2a5760e32 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -103,16 -27,9 +103,19 @@@ Core and Builtin Library ------- + - Issue #21723: asyncio.Queue: support any type of number (ex: float) for the + maximum size. Patch written by Vajrasky Kok. + +- Issue #21711: support for "site-python" directories has now been removed + from the site module (it was deprecated in 3.4). + +- Issue #17552: new socket.sendfile() method allowing to send a file over a + socket by using high-performance os.sendfile() on UNIX. + Patch by Giampaolo Rodola'. + +- Issue #18039: dbm.dump.open() now always creates a new database when the + flag has the value 'n'. Patch by Claudiu Popa. + - Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop. run_forever() and run_until_complete() methods of asyncio.BaseEventLoop now raise an exception if the event loop was closed.