Path: csiph.com!usenet.pasdenom.info!news.redatomik.org!newsfeed.xs4all.nl!newsfeed1a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.028 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; 'method:': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'release,': 0.09; 'jan': 0.11; 'up-to-date': 0.13; '"new': 0.16; 'nicholas': 0.16; 'normal,': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'subject:early': 0.16; 'x.y': 0.16; 'wrote:': 0.16; 'changes': 0.20; 'doc': 0.22; 'am,': 0.23; 'appears': 0.23; 'module': 0.23; 'chapter': 0.23; 'normally': 0.23; 'header:In-Reply-To:1': 0.24; 'header:User- Agent:1': 0.26; 'header:X-Complaints-To:1': 0.26; 'reflect': 0.27; 'releases,': 0.29; 'terry': 0.29; "skip:' 10": 0.30; 'branch': 0.31; 'getting': 0.33; 'url:python': 0.33; 'idle': 0.33; 'url:downloads': 0.33; 'subject:?': 0.34; 'to:addr:python-list': 0.35; 'url:org': 0.36; 'url:library': 0.36; 'subject:: ': 0.37; 'release': 0.37; 'version': 0.38; 'received:org': 0.38; 'means': 0.39; 'url:docs': 0.39; 'to:addr:python.org': 0.39; 'subject:the': 0.40; 'url:3': 0.60; 'skip:u 10': 0.62; 'latest': 0.64; 'making': 0.64; 'series': 0.65; 'here': 0.66; 'subject': 0.68; 'online': 0.71; 'published': 0.72; 'subject:get': 0.81; '10:11': 0.84; '3.4': 0.84; 'subject:Did': 0.84; 'subject:published': 0.84; 'received:fios.verizon.net': 0.91; 'releases.': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Did the 3.4.4 docs get published early? Date: Wed, 10 Jun 2015 19:16:28 -0400 References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-98-114-97-173.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 25 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1433978233 news.xs4all.nl 2910 [2001:888:2000:d::a6]:35100 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:92429 On 6/10/2015 10:11 AM, Nicholas Chammas wrote: > For example, here is a "New in version 3.4.4" method: > > https://docs.python.org/3/library/asyncio-task.html#asyncio.ensure_future > > However, the latest release appears to be 3.4.3: > > https://www.python.org/downloads/ > > Is this normal, or did the 3.4.4 docs somehow get published early by > mistake? The online x.y docs reflect the x.y branch in the repository. New features are not normally added in an x.y.z maintenance release, which is normally bugfixes only. However, asyncio is a new module in 3.4 and marked as 'provisional', which means subject to change during the 3.4 series of releases. Idle is also exceptional in getting uncategorized changes in maintenance releases, so each x.y.z release needs a copy of the Idle doc chapter that is both up-to-date and frozen as of x.y.z. Making this happen is still a work-in-progress. -- Terry Jan Reedy