Commit 059c3a5f authored by Guido van Rossum's avatar Guido van Rossum

Add a comment explaining the discrepancy between on-the-wire method

names and Python method names.  (Checked this in on the trace branch
by mistake.)
parent bb9fe0d8
......@@ -14,6 +14,12 @@
"""Stub for interface exported by ClientStorage"""
class ClientStorage:
# The on-the-wire names of some of the methods don't match the
# Python method names. That's because the on-the-wire protocol
# was fixed for ZEO 2 and we don't want to change it. There are
# some aliases in ClientStorage.py to make up for this.
def __init__(self, rpc):
self.rpc = rpc
......
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