Author: Maciej Fijalkowski <fij...@gmail.com> Branch: extradoc Changeset: r4277:01d9853888c4 Date: 2012-07-03 19:22 +0200 http://bitbucket.org/pypy/extradoc/changeset/01d9853888c4/
Log: start a blog post diff --git a/blog/draft/plans-for-2-years.rst b/blog/draft/plans-for-2-years.rst new file mode 100644 --- /dev/null +++ b/blog/draft/plans-for-2-years.rst @@ -0,0 +1,27 @@ +What we'll be busy for the forseeable future +============================================ + +Hello. + +The PyPy dev process has been dubbed as too opaque. In this blog post +we try to highlight few projects being worked on or in plans for the near +future. As it usually goes with such lists, don't expect any deadlines, +it's more "a lot of work that will keep us busy". It also answers +whether or not PyPy has achieved it's total possible performance. + +XXX + +- iterators in RPython + +- continuelet-jit-2 + +- dynamic-specialized-tuples + +- tracing speed + +- bridges and hakan's work + +- GC pinning + +- kill multimethods + diff --git a/talk/ep2012/tools/demo.py b/talk/ep2012/tools/demo.py --- a/talk/ep2012/tools/demo.py +++ b/talk/ep2012/tools/demo.py @@ -11,6 +11,26 @@ + + + + + + + + + + + + + + + + + + + + def bridge(): s = 0 for i in range(100000): @@ -25,6 +45,18 @@ + + + + + + + + + + + + def bridge_overflow(): s = 2 for i in range(100000): @@ -38,6 +70,19 @@ + + + + + + + + + + + + + def nested_loops(): s = 0 for i in range(10000): @@ -52,6 +97,12 @@ + + + + + + def inner1(): return 1 @@ -68,6 +119,16 @@ + + + + + + + + + + def inner2(a): for i in range(3): a += 1 @@ -83,6 +144,15 @@ + + + + + + + + + class A(object): def __init__(self, x): if x % 2: @@ -104,6 +174,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + if __name__ == '__main__': simple() bridge() _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit