Author: Maciej Fijalkowski <fij...@gmail.com>
Branch: extradoc
Changeset: r5394:4b47262f49ca
Date: 2014-09-11 11:29 -0600
http://bitbucket.org/pypy/extradoc/changeset/4b47262f49ca/

Log:    work on the proposal

diff --git a/talk/pycon2015/status/abstract.rst 
b/talk/pycon2015/status/abstract.rst
--- a/talk/pycon2015/status/abstract.rst
+++ b/talk/pycon2015/status/abstract.rst
@@ -1,13 +1,24 @@
-Status of PyPy and its ecosystem
-================================
+PyPy - the last 2 years of progress
+===================================
 
-Description
------------
+PyPy has been in the works for more than ten years and has reached relative
+maturity with more and more libraries working under PyPy and more deployments
+happening. Right now it entertains between 0.5-1.0% of PyPI package downloads
+(with CPython taking virtually all of the rest), used mostly for
+high-performance web servers.
 
-PyPy is a fast alternative implementation of Python. This talk will describe
-what happened in the PyPy ecosystem in the last 2 years and what the future
-holds. Topics such as JIT improvements, garbage collection, CFFI, Numpy, STM
-and Python 3 will be covered.
+Since no PyPy talk happened at PyCon 2014, we would like to present what
+we have achieved during the two years between talks. We would like to cover
+advancements in the PyPy performance landscape, but more importantly how
+we're addresssing the community needs and building the ecosystem. These days
+a lot of libraries that used to bind to C using CPython C API are either
+using cffi or have alternatives using cffi.
+
+We would also like to walk through a few success stories that we have
+experienced. Unforunately the biggest chunk of PyPy clients are very
+secretive (e.g. trading companies), but we can still present a few case 
studies.
+
+XXXX
 
 Abstract
 --------
diff --git a/talk/uct2014/example/demo1.py b/talk/uct2014/example/demo1.py
--- a/talk/uct2014/example/demo1.py
+++ b/talk/uct2014/example/demo1.py
@@ -12,7 +12,7 @@
     except ValueError:
         print "Requires ints"
         return 1
-    print "Added", arg0 + arg1
+    print "Got", adder(arg0, arg1)
     return 0
 
 def target(*args):
diff --git a/talk/uct2014/example/interp.py b/talk/uct2014/example/interp.py
--- a/talk/uct2014/example/interp.py
+++ b/talk/uct2014/example/interp.py
@@ -46,3 +46,7 @@
 
 def target(*args):
     return entry_point
+
+if __name__ == '__main__':
+    import sys
+    entry_point(sys.argv)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to