Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: MRAB Newsgroups: comp.lang.python Subject: Re: Python 3.6.0a2 is now available Date: Wed, 15 Jun 2016 15:19:06 +0100 Lines: 31 Message-ID: References: <2fac7f7a-00ed-456a-9240-04b09ef10d63@googlegroups.com> <087d80a4-edd1-30a7-a093-59099e9f398d@mrabarnett.plus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de 06LUKMJe43IB+HVv8z1uCwlcfWPi5zjDSt21LsMdu0CA== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.05; 'cpython': 0.05; 'modified': 0.05; 'type,': 0.07; 'python': 0.10; 'python.': 0.11; 'alpha': 0.15; '14:38,': 0.16; '2016': 0.16; 'c89': 0.16; 'development:': 0.16; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'phase,': 0.16; 'provision': 0.16; 'received:192.168.1.4': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'wrote:': 0.16; 'deleted.': 0.18; 'team,': 0.18; 'planned': 0.22; 'header:In- Reply-To:1': 0.24; 'discussion': 0.24; 'header:User-Agent:1': 0.26; 'switch': 0.27; 'array': 0.29; "i'm": 0.30; 'code': 0.30; 'announce': 0.32; 'class': 0.33; 'source': 0.33; 'url:python': 0.33; 'url:downloads': 0.33; 'recommended': 0.34; 'list': 0.34; 'next': 0.35; 'supports': 0.35; 'community': 0.36; 'but': 0.36; 'there': 0.36; 'url:org': 0.36; 'monday,': 0.36; 'to:addr:python- list': 0.36; 'subject:: ': 0.37; 'release': 0.37; 'why': 0.39; 'data': 0.39; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'here:': 0.63; 'production': 0.67; 'subject:now': 0.70; 'subject:available': 0.79; 'heavy': 0.81; '3.6': 0.84; 'lacks': 0.84; 'omission': 0.84; 'python-dev': 0.84; 'utc-4,': 0.84; 'good,': 0.93 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=K//fZHiI c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=IkcTkHD0fZMA:10 a=8AHkEIZyAAAA:8 a=DsQhVCnj7WFPKn1znCMA:9 a=QEXdDO2ut3YA:10 a=7K4yPEzc-uA7A4xFz8XL:22 X-AUTH: mrabarnett@:2500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 In-Reply-To: <2fac7f7a-00ed-456a-9240-04b09ef10d63@googlegroups.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: <087d80a4-edd1-30a7-a093-59099e9f398d@mrabarnett.plus.com> X-Mailman-Original-References: <2fac7f7a-00ed-456a-9240-04b09ef10d63@googlegroups.com> Xref: csiph.com comp.lang.python:109971 On 2016-06-15 14:38, cjw wrote: > On Monday, 13 June 2016 23:57:20 UTC-4, Ned Deily wrote: >> On behalf of the Python development community and the Python 3.6 release >> team, I'm happy to announce the availability of Python 3.6.0a2. >> 3.6.0a2 is the first of four planned alpha releases of Python 3.6, >> the next major release of Python. During the alpha phase, Python 3.6 >> remains under heavy development: additional features will be added >> and existing features may be modified or deleted. Please keep in mind >> that this is a preview release and its use is not recommended for >> production environments. >> >> You can find Python 3.6.0a2 here: >> >> https://www.python.org/downloads/release/python-360a2/ >> >> The next release of Python 3.6 will be 3.6.0a3, currently scheduled for >> 2016-07-11. >> > I see that the Array Class now provides for data of the double type, this is good, but why is there no provision for data of the complex type? > > Is this omission intended? > The Array class supports types that are available in C, and, up until now, the source code of CPython has been based on the C89 standard, which lacks a complex type. A complex type was added in the C99 standard. Coincidentally, there was recently a discussion on the python-dev list about whether to switch to C99.