Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: "Sven R. Kunze" Newsgroups: comp.lang.python Subject: Re: How the heck does async/await work in Python 3.5 Date: Mon, 22 Feb 2016 23:16:53 +0100 Lines: 19 Message-ID: References: <56c7d145$0$1597$c3e8da3$5496439d@news.astraweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de h7LYXhcfVdT5gxxltbJbOgfItIe37R78KEuJJbay3SZg== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.016 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.05; 'tries': 0.05; 'url:msdn': 0.07; 'subject:How': 0.09; 'language,': 0.11; 'syntax': 0.13; 'discussions': 0.15; '12:50': 0.16; 'async': 0.16; 'programmers.': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'wrote:': 0.16; 'developer': 0.20; 'thanks,': 0.24; 'header:In-Reply-To:1': 0.24; 'subject:/': 0.30; 'another': 0.32; 'open': 0.33; 'similar': 0.33; 'received:10.0': 0.34; 'best,': 0.35; 'something': 0.35; 'possible': 0.36; 'subject:work': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:10': 0.37; 'christian': 0.38; 'subject:the': 0.39; 'to:addr:python.org': 0.40; 'received:de': 0.40; 'charset:windows-1252': 0.62; 'video.': 0.66; 'overall': 0.72; 'christian.': 0.84; 'concept,': 0.84; 'gollwitzer': 0.84; 'video:': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mail.de; s=mail201212; t=1456179415; bh=w1I6Tq/xuCVUok9RzQPN16RIfkLudZMhvpVIybpIfyk=; h=Subject:To:References:From:Date:In-Reply-To:From; b=I+QM47Nzab3UMLu8e+8S2l7pwOhQRv2r+Dv+H6KH75xxeco4XKabGHy8MxjyVjziA lkEGFS/kxN7OkSP0gu1lXahEVg73RhGMHf//T1nS7POVZKkIt6CdYLE13HVofgbIZk SqUpKEgpEFVk2KszFlGbPF4gs+nGzREH6FYkbzhg= In-Reply-To: X-purgate: clean X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate-type: clean X-purgate-Ad: Categorized by eleven eXpurgate (R) http://www.eleven.de X-purgate: This mail is considered clean (visit http://www.eleven.de for further information) X-purgate: clean X-purgate-size: 629 X-purgate-ID: 154282::1456179415-000018ED-25D90CC4/0/0 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.21rc2 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:103366 On 20.02.2016 07:53, Christian Gollwitzer wrote: > If you have difficulties wit hthe overall concept, and if you are open > to discussions in another language, take a look at this video: > > https://channel9.msdn.com/Shows/C9-GoingNative/GoingNative-39-await-co-routines > > > MS has added coroutine support with very similar syntax to VC++ > recently, and the developer tries to explain it to the "stackful" > programmers. Thanks, Christian. Very informative video. Is something like shown in 12:50 ( cout << tcp_reader(1000).get() ) possible with asyncio? (tcp_reader would be async def) Best, Sven