C++,python,热爱算法和机器学习
全部博文(1214)
发布时间:2015-01-04 12:40:34
Gevent can spawn a co-routine: g1 = gevent.spawn(function)After the function is been called, g1 has its return value: g1.valueIf we want to have a callback with g1.value: g1.rawlink(callback)This callback will be called before join: gevent.joinall([g1])Here is the expirement about this con.........【阅读全文】
发布时间:2015-01-04 11:49:07
原文地址:http://youngsterxyf.github.io/2013/01/04/Decorators-and-Functional-Python/2013-01-04 五By youngsterxyf原文:Decorators and Functional Python译者:youngsterxyf装饰器是Python的一大特色。除了在语言中的原本用处,还帮助我们以一种有趣的方式(函数式)进行思考。.........【阅读全文】
发布时间:2015-01-01 23:12:06
stackless python的机制看上去有点像golang原文地址:http://www.cnblogs.com/sevenyuan/archive/2010/12/08/1900386.htmlhttp://www.elias.cn/Python/PyConcurrency1.? 前言偶然看到Erlang vs. Stackless python: a first benchmark,对Erlang和Stackless Python的并发处理性能进行了实验比较,基本结论认为二者.........【阅读全文】
发布时间:2015-01-01 21:11:15
def foo(x=[]): x.append(1); print(x)foo(); foo()得到:[1][1, 1]第一次调用foo() 得到x =[] ,然后x = [1],x指向列表[1]内存中的地址。但是第二次调用foo() , 不执行x = []参考 Python 官方 Tutorial 中的内容Important warning: The default value is evaluated only once. This makes a d.........【阅读全文】
chinaunix网友2009-10-12 16:19
你好,你在Google Code上放的sg2fcitx的mainme.c源代码我下载编译会出现段错误。请问你的编译环境是什么?GCC版本是多少? 谢谢。