[pypy-svn] r19235 - pypy/dist/pypy/rpython
tismer at codespeak.net
tismer at codespeak.net
Mon Oct 31 15:48:14 CET 2005
Author: tismer
Date: Mon Oct 31 15:48:12 2005
New Revision: 19235
Modified:
pypy/dist/pypy/rpython/rstack.py (props changed)
pypy/dist/pypy/rpython/rtyper.py
Log:
fixeol plus a typo
Modified: pypy/dist/pypy/rpython/rtyper.py
==============================================================================
--- pypy/dist/pypy/rpython/rtyper.py (original)
+++ pypy/dist/pypy/rpython/rtyper.py Mon Oct 31 15:48:12 2005
@@ -739,7 +739,7 @@
raise TyperError("don't know how to convert from %r to %r" %
(r_from, r_to))
if v.concretetype != r_to.lowleveltype:
- raise TyperError("bug in convertion from %r to %r: "
+ raise TyperError("bug in conversion from %r to %r: "
"returned a %r" % (r_from, r_to,
v.concretetype))
return v
More information about the Pypy-commit
mailing list