免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3493 | 回复: 9
打印 上一主题 下一主题

Python 2.6 正式版发布 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-10-02 18:11 |只看该作者 |倒序浏览
刚看新闻phthon 2.6 release了~~

http://www.python.org/ftp/python/2.6/Python-2.6.tar.bz2

论坛徽章:
0
2 [报告]
发表于 2008-10-02 19:17 |只看该作者
:wink:
We are pleased to announce the release of Python 2.6 (final), a new production-ready release, on October 1st, 2008.

论坛徽章:
0
3 [报告]
发表于 2008-10-02 20:11 |只看该作者
是不是意味着2.5被淘汰了?

论坛徽章:
0
4 [报告]
发表于 2008-10-02 20:20 |只看该作者
原帖由 jjj137 于 2008-10-2 20:11 发表
是不是意味着2.5被淘汰了?


非也非也。。
2.6是2.x与3.x的过度版

基本是2.5的修正版,同时会注名3.x已经放弃的函数或特性

论坛徽章:
0
5 [报告]
发表于 2008-10-02 20:31 |只看该作者
恭喜恭喜。

论坛徽章:
0
6 [报告]
发表于 2008-10-02 21:42 |只看该作者
from        张沈鹏 <zsp007@gmail.com>
reply-to        python-cn@googlegroups.com
to        python-cn@googlegroups.com
date        Thu, Oct 2, 2008 at 05:36
subject        [CPyUG:67058] Python2.6正式发布,枚举一下我比较感兴趣的新特性
mailing list        <python-cn.googlegroups.com> Filter messages from this mailing list
mailed-by        googlegroups.com
signed-by        googlegroups.com
       
hide details 05:36 (16 hours ago)
       
       
Reply
       
       
1.
http://docs.python.org/dev/whats ... -the-with-statement

with特性正式启用,文档中这中用法很cool

db_connection = DatabaseConnection()
with db_connection as cursor:
   cursor.execute('insert into ...')
   cursor.execute('delete from ...')
   # ... more operations ...

应该也可以这样
with xxx.profile() as p:
  p.xxx=111
  p.update_xxx(111)
#结束时刷新缓存

当然,怎么自己写支持with的模块呢?

http://docs.python.org/dev/whats ... e-contextlib-module

2.
http://docs.python.org/dev/whats ... stract-base-classes
加入了虚函数

from abc import ABCMeta, abstractmethod

class Drawable():
   __metaclass__ = ABCMeta

   @abstractmethod
   def draw(self, x, y, scale=1.0):
       pass

   def draw_doubled(self, x, y):
       self.draw(x, y, scale=2.0)

3.

新的8进制和2进制的表示方式,我喜欢2进制

Python 2.6 doesn't drop support for a leading 0 signalling an octal
number, but it does add support for "0o" and "0b":

>>> 0o21, 2*8 + 1
(17, 17)
>>> 0b101111
47

4.
Class Decorators
恩,可以少写一点元类了

class A:
pass
A = foo(bar(A))


@foo
@bar
class A:
pass

5.
Per-user site-packages Directory
官方的virtual python方式

6.
很方便的并行技术,有点复杂,只是大概看了一下...

http://docs.python.org/dev/whats ... iprocessing-package

7.类似moko模板的string构建

http://docs.python.org/dev/whats ... d-string-formatting

8.
让人不爽的改动

http://docs.python.org/dev/whats ... on-handling-changes

try:
   ...
except (TypeError, ValueError):#不能写except TypeError, ValueError
   ...

9.
哇,可以这样.官方也玩magic,我以后有借口了

class C(object):
   @property
   def x(self):
       return self._x

   @x.setter
   def x(self, value):
       self._x = value

   @x.deleter
   def x(self):
       del self._x

论坛徽章:
0
7 [报告]
发表于 2008-10-03 19:48 |只看该作者
如果是这样,应该可以直接什2.6

论坛徽章:
0
8 [报告]
发表于 2008-10-03 21:59 |只看该作者
我先在2.5观望几天

论坛徽章:
0
9 [报告]
发表于 2008-10-03 22:06 |只看该作者
wxPython还没有支持Python2.6捏,继续观望一阵子先,哈哈哈

论坛徽章:
0
10 [报告]
发表于 2008-10-04 13:24 |只看该作者
2.6版本是个过渡版本。
承上启下,地位特殊且重要。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP