[pypy-commit] pypy py3.5: typo

arigo pypy.commits at gmail.com
Sun Feb 19 04:26:22 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r90192:56a8ffad3837
Date: 2017-02-19 10:23 +0100
http://bitbucket.org/pypy/pypy/changeset/56a8ffad3837/

Log:	typo

diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py
--- a/pypy/interpreter/baseobjspace.py
+++ b/pypy/interpreter/baseobjspace.py
@@ -1507,7 +1507,7 @@
         if self.is_none(w_obj):
             e = oefmt(self.w_TypeError, "a %s is required, not None", expected)
         else:
-            e = oefmt(self.w_TypeError, "a %s is requried, not %T", expected, w_obj)
+            e = oefmt(self.w_TypeError, "a %s is required, not %T", expected, w_obj)
         raise e
 
     @specialize.arg(1)


More information about the pypy-commit mailing list