Hello,
I just noticed a very small typo in finite_field.py. A patch is
attached.
I believe using pylint regularly would help in preventing these
glitches from appearing.
Best regards,
--
Juan M. Bello Rivas
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://sage.scipy.org/sage/ and http://modular.math.washington.edu/sage/
-~----------~----~----~----~------~----~------~--~---
--- sage/rings/finite_field.py.old 2007-07-09 10:44:18.000000000 +0200
+++ sage/rings/finite_field.py 2007-06-03 04:25:50.000000000 +0200
@@ -156,7 +156,7 @@
name = normalize_names(1,name)
if elem_cache is None:
- elem_cache = order < 500
+ elem_cahce = order < 500
key = (order, name, modulus)
if cache.has_key(key):