#18267: make whitespace consistent and fix an operator.

This commit is contained in:
Ezio Melotti 2013-08-08 15:45:56 +03:00
parent 66f2ea042a
commit 79016e1d55
1 changed files with 9 additions and 9 deletions

View File

@ -473,7 +473,7 @@ The client code for the preceding server::
multicall.divide(7, 3)
result = multicall()
print("7+3=%d, 7-3=%d, 7*3=%d, 7/3=%d" % tuple(result))
print("7+3=%d, 7-3=%d, 7*3=%d, 7//3=%d" % tuple(result))
Convenience Functions