Commit 2aaec3e5 authored by Guido van Rossum's avatar Guido van Rossum

Get rid of arguments named None.

This is a SyntaxWarning in Python 2.3 and will be an error in 2.4.
parent 1b14200a
......@@ -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():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment