[pypy-commit] extradoc extradoc: one abstract
fijal
noreply at buildbot.pypy.org
Sun Sep 23 11:27:59 CEST 2012
Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: extradoc
Changeset: r4819:3a0f22d988fc
Date: 2012-09-23 11:27 +0200
http://bitbucket.org/pypy/extradoc/changeset/3a0f22d988fc/
Log: one abstract
diff --git a/talk/confoo2013/abstract_pypy.rst b/talk/confoo2013/abstract_pypy.rst
new file mode 100644
--- /dev/null
+++ b/talk/confoo2013/abstract_pypy.rst
@@ -0,0 +1,19 @@
+
+PyPy - the fastest Python interpreter
+=============================================
+
+The PyPy project has recently gathered a lot of attention for its
+progress in speeding up the Python language -- it is the fastest,
+most compatible and most stable 'alternative´ Python interpreter. No
+longer merely a research curiosity, PyPy is now suitable for production
+use. I would like to present PyPy, it's current status, near future goals
+and the general performance Python landscape.
+
+NOTES TO ORGANIZERS:
+
+I've been PyPy core developer since 2006 and presenting PyPy to wider audience
+since 2007. I've been to conferences all over the world, speaking about PyPy
+and other Python topics. This talk will hopefully introduce the conference
+audience to what PyPy is, how to use it in your code and what benefits can
+you expect.
+
diff --git a/talk/dls2012/demo/background.py b/talk/dls2012/demo/background.py
--- a/talk/dls2012/demo/background.py
+++ b/talk/dls2012/demo/background.py
@@ -3,11 +3,9 @@
class Background(ReloadHack):
def __init__(self):
- self.fcnt = 0
self.image = 0
def update(self, frame):
- self.fcnt += 1
- alfa = self.fcnt/(self.fcnt + 1.0)
+ alfa = 0.9
self.image = alfa * self.image + (1 - alfa) * frame
diff --git a/talk/stm2012/stmimpl.rst b/talk/stm2012/stmimpl.rst
--- a/talk/stm2012/stmimpl.rst
+++ b/talk/stm2012/stmimpl.rst
@@ -33,7 +33,7 @@
In this model there are two kinds of objects. As an object gets allocated,
it's created as a local object that's only visible to the current thread.
Local object operations are completely like STM-less operations, the fields
-are just modified.
+are just modified. When object survives
Objects are either global (visible to everybody, and read-only), or
they are local (visible only to the current thread).
More information about the pypy-commit
mailing list