[Zodb-checkins] CVS: Packages/BTrees - convert.py:1.7

Guido van Rossum guido@python.org
Tue, 1 Oct 2002 10:10:18 -0400


Update of /cvs-repository/Packages/BTrees
In directory cvs.zope.org:/tmp/cvs-serv27494/lib/python/BTrees

Modified Files:
	convert.py 
Log Message:
Get rid of arguments named None.
This is a SyntaxWarning in Python 2.3 and will be an error in 2.4.

=== Packages/BTrees/convert.py 1.6 => 1.7 ===
--- Packages/BTrees/convert.py:1.6	Wed Aug 14 17:32:23 2002
+++ Packages/BTrees/convert.py	Tue Oct  1 10:09:47 2002
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 
-def convert(old, new, threshold=200, f=None, None=None):
+def convert(old, new, threshold=200, f=None):
     "Utility for converting old btree to new"
     n=0
     for k, v in old.items():