[pypy-svn] jitviewer default: aha!

fijal commits-noreply at bitbucket.org
Sat Apr 9 21:50:57 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r114:48254ef1335a
Date: 2011-04-09 21:50 +0200
http://bitbucket.org/pypy/jitviewer/changeset/48254ef1335a/

Log:	aha!

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -10,6 +10,6 @@
       url='http://pypy.org',
       packages=['_jitviewer'],
       scripts=['bin/jitviewer.py'],
-      requires=['flask', 'pygments', 'simplejson'],
+      install_requires=['flask', 'pygments', 'simplejson'],
       include_package_data=True,
       package_data={'': ['templates/*.html', 'static/*']})

diff --git a/_jitviewer/test/x.py b/_jitviewer/test/x.py
--- a/_jitviewer/test/x.py
+++ b/_jitviewer/test/x.py
@@ -1,12 +0,0 @@
-
-def f(a, b):
-    return a + b
-
-def g():
-    i = 0
-    while i < 10:
-        a = 'foo'
-        i += 1
-
-def h():
-    [x for x in range(10)]


More information about the Pypy-commit mailing list