From: Tim Peters Date: Tue, 28 Jan 2003 22:26:28 +0000 (+0000) Subject: Renamed "bin" arguments to "proto". Note that this test currently X-Git-Tag: v2.3c1~2211 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dcaa24e5035d04fe8f8c27c977da97b0f6d60a1f;p=python Renamed "bin" arguments to "proto". Note that this test currently fails, for reasons unrelated to this patch. --- diff --git a/Lib/test/test_cpickle.py b/Lib/test/test_cpickle.py index 0c34cda743..f1700d6612 100644 --- a/Lib/test/test_cpickle.py +++ b/Lib/test/test_cpickle.py @@ -15,9 +15,9 @@ class cPickleTests(AbstractPickleTests, AbstractPickleModuleTests): class cPicklePicklerTests(AbstractPickleTests): - def dumps(self, arg, bin=0): + def dumps(self, arg, proto=0): f = StringIO() - p = cPickle.Pickler(f, bin) + p = cPickle.Pickler(f, proto) p.dump(arg) f.seek(0) return f.read() @@ -31,8 +31,8 @@ class cPicklePicklerTests(AbstractPickleTests): class cPickleListPicklerTests(AbstractPickleTests): - def dumps(self, arg, bin=0): - p = cPickle.Pickler(bin) + def dumps(self, arg, proto=0): + p = cPickle.Pickler(proto) p.dump(arg) return p.getvalue() @@ -45,9 +45,9 @@ class cPickleListPicklerTests(AbstractPickleTests): class cPickleFastPicklerTests(AbstractPickleTests): - def dumps(self, arg, bin=0): + def dumps(self, arg, proto=0): f = StringIO() - p = cPickle.Pickler(f, bin) + p = cPickle.Pickler(f, proto) p.fast = 1 p.dump(arg) f.seek(0)