Author: Alexander Schremmer <alex AT alexanderweb DOT de>
Branch: 
Changeset: r306:fe3138fe8a6f
Date: 2015-02-21 17:51 +0100
http://bitbucket.org/pypy/benchmarks/changeset/fe3138fe8a6f/

Log:    Fixed exit call in bottle benchmark.

diff --git a/multithread/bottle/app.py b/multithread/bottle/app.py
--- a/multithread/bottle/app.py
+++ b/multithread/bottle/app.py
@@ -95,7 +95,7 @@
                              stderr=subprocess.PIPE)
     except OSError as e:
         sys.stderr.write("Error trying to execute 'openload'\n%s" % e)
-        os.exit(1)
+        os._exit(1)
 
     returncode = p.wait()
     out, err = p.communicate()
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to