Author: Alex Gaynor <alex.gay...@gmail.com>
Branch: 
Changeset: r50233:648537e5b016
Date: 2011-12-06 17:49 -0500
http://bitbucket.org/pypy/pypy/changeset/648537e5b016/

Log:    typo fix

diff --git a/pypy/module/micronumpy/interp_dtype.py 
b/pypy/module/micronumpy/interp_dtype.py
--- a/pypy/module/micronumpy/interp_dtype.py
+++ b/pypy/module/micronumpy/interp_dtype.py
@@ -18,7 +18,7 @@
 VOID_STORAGE = lltype.Array(lltype.Char, hints={'nolength': True, 
'render_as_void': True})
 
 class W_Dtype(Wrappable):
-    _immuable_fields_ = ["itemtype", "num", "kind"]
+    _immutable_fields_ = ["itemtype", "num", "kind"]
 
     def __init__(self, itemtype, num, kind, name, char, w_box_type, 
alternate_constructors=[]):
         self.signature = signature.BaseSignature()
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to