Commit 9c3d6770 authored by Jason Madden's avatar Jason Madden

Avoid long line

parent fa2b97d4
......@@ -687,7 +687,8 @@ class ZEOStorage:
if PY3:
pickler = Pickler(BytesIO(), 3)
else:
pickler = Pickler(0) # The pure-python version requires at least one argument (PyPy)
# The pure-python version requires at least one argument (PyPy)
pickler = Pickler(0)
pickler.fast = 1
try:
pickler.dump(error)
......
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