发布Python 2.4,alpha 1 [英] RELEASED Python 2.4, alpha 1

查看:58
本文介绍了发布Python 2.4,alpha 1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

代表Python开发团队和Python社区,我很高兴宣布Python 2.4的第一个alpha。


Python 2.4a1是alpha版本。我们非常感谢你,如果你这个b $ b可以下载它,踢掉轮胎并让我们知道你发现的任何问题,但它不适合生产使用。

http://www.python.org/2.4/


在这个版本中,我们有许多新模块,一些现有的

模块已经在C中重新实现了速度,大量的

改进和现有模块的增加以及更大的列表

的bug被压扁了。请参阅精选内容,Python中的新功能

2.4或详细的NEWS文件 - 所有这些都可以从Python 2.4

网页获得。


在几周内将至少再发布一次alpha版本

获取一些新功能,而这些功能并没有成为第一个alpha版本,<在我们发布2.4测试版然后发布最终版本之前,我们需要



请在SourceForge中记录您对此版本的任何问题

bug跟踪器(注意到你正在使用2.4a1):

http://sourceforge.net/bugs/?group_id=5470

享受新版本,

Anthony


Anthony Baxter
an*****@python.org

Python发布经理

(代表整个python-dev团队)

解决方案

AnthonyBaxter写道:

代表Python开发团队和Python社区,我很高兴宣布Python 2.4的第一个alpha。




祝贺一如既往的出色工作。只是好奇:

很清楚,函数装饰者在这个版本中并没有成功。他们会在测试版中加入
吗?


问候,


Iwan


Anthony Baxter< an ***** @ python.org>在消息新闻中写道:< ma ************************************* @ pyth on.org> ; ...

代表Python开发团队和Python社区,我很高兴宣布Python 2.4的第一个alpha。
< snip>




嗯......我看到生成器表达式有后期绑定,就像列表推导一样:

f1,f2,f3 = tuple(lambda:i in [1,2,3])
f1()
3 f2()
3 f3()



3


我更喜欢早期绑定的阵营;我想知道迟到

绑定是最终的还是可能会有变化而且还有来自Guido的声明



Michele Simionato


2004年7月9日,Michele Simionato写道:

嗯...我看到生成器表达式有后期绑定,就像列表<理解:

f1,f2,f3 = tuple(lambda:i for [1,2,3])
f1()3 f2()3 f3()3




我认为这是lambdas(或一般函数)的属性,而不是

比理解:

i = 1
f1 = lambda:i
i = 2
f2 = lambda:i
i = 3
f3 = lambda:i
f1()
3 f2()
3 f3()



3


On behalf of the Python development team and the Python community, I''m
happy to announce the first alpha of Python 2.4.

Python 2.4a1 is an alpha release. We''d greatly appreciate it if you
could download it, kick the tires and let us know of any problems you
find, but it is not suitable for production usage.

http://www.python.org/2.4/

In this release we have a number of new modules, a number of existing
modules that have been reimplemented in C for speed, a large number of
improvements and additions to existing modules and an even larger list
of bugs squished. See either the highlights, the What''s New in Python
2.4, or the detailed NEWS file -- all available from the Python 2.4
webpage.

There will be at least one more alpha release in a couple of weeks to
pick up a few new features that didn''t make it into the first alpha,
before we release 2.4 betas and then the final release.

Please log any problems you have with this release in the SourceForge
bug tracker (noting that you''re using 2.4a1):

http://sourceforge.net/bugs/?group_id=5470

Enjoy the new release,
Anthony

Anthony Baxter
an*****@python.org
Python Release Manager
(on behalf of the entire python-dev team)

解决方案

Anthony Baxter wrote:

On behalf of the Python development team and the Python community, I''m
happy to announce the first alpha of Python 2.4.



Congratulations on a terrific job, as always. Just to be curious:
clearly, function decorators didn''t make it in this release. Will they
be incorporated in the beta?

Regards,

Iwan


Anthony Baxter <an*****@python.org> wrote in message news:<ma*************************************@pyth on.org>...

On behalf of the Python development team and the Python community, I''m
happy to announce the first alpha of Python 2.4.
<snip>



Uhm ... I see generator expressions have late bindings, just as list comprehensions:

f1,f2,f3=tuple(lambda : i for i in [1,2,3])
f1() 3 f2() 3 f3()


3

I was more in the camp of early bindings; I would like to know if late
bindings are final or subject to changes and it there a pronouncement
from Guido.
Michele Simionato


On 9 Jul 2004, Michele Simionato wrote:

Uhm ... I see generator expressions have late bindings, just as list
comprehensions:

f1,f2,f3=tuple(lambda : i for i in [1,2,3])
f1() 3 f2() 3 f3() 3



I think this is a property of lambdas (or functions in general), rather
than comprehensions:

i=1
f1=lambda: i
i=2
f2=lambda: i
i=3
f3=lambda: i
f1() 3 f2() 3 f3()


3


这篇关于发布Python 2.4,alpha 1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆