[pypy-commit] pypy default: Fix typo in csv module.

onyxfish noreply at buildbot.pypy.org
Thu Mar 8 22:35:12 CET 2012


Author: Christopher Groskopf <staringmonkey at gmail.com>
Branch: 
Changeset: r53273:000d6f1cb12d
Date: 2012-03-08 13:23 -0600
http://bitbucket.org/pypy/pypy/changeset/000d6f1cb12d/

Log:	Fix typo in csv module.

diff --git a/lib_pypy/_csv.py b/lib_pypy/_csv.py
--- a/lib_pypy/_csv.py
+++ b/lib_pypy/_csv.py
@@ -414,7 +414,7 @@
 
     def _parse_add_char(self, c):
         if len(self.field) + len(c) > _field_limit:
-            raise Error("field larget than field limit (%d)" % (_field_limit))
+            raise Error("field larger than field limit (%d)" % (_field_limit))
         self.field += c
         
 


More information about the pypy-commit mailing list