[pypy-commit] pypy py3k-osxfix: Backed out changeset b1fbb8f141b8

pjenvey pypy.commits at gmail.com
Tue May 24 21:38:01 EDT 2016


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k-osxfix
Changeset: r84672:92c8b0450888
Date: 2016-05-24 18:36 -0700
http://bitbucket.org/pypy/pypy/changeset/92c8b0450888/

Log:	Backed out changeset b1fbb8f141b8

diff --git a/pypy/module/posix/interp_posix.py b/pypy/module/posix/interp_posix.py
--- a/pypy/module/posix/interp_posix.py
+++ b/pypy/module/posix/interp_posix.py
@@ -175,10 +175,8 @@
         result = space.c_int_w(w_value)
     except OperationError as e:
         if not e.match(space, space.w_OverflowError):
-            import traceback
-            traceback.print_stack()
             raise oefmt(space.w_TypeError,
-                "!argument should be %s, not %T", allowed_types, w_value)
+                "argument should be %s, not %T", allowed_types, w_value)
         else:
             raise
     if result == -1:


More information about the pypy-commit mailing list