tarantool / tarantool-python

Python client library for Tarantool
https://www.tarantool.io
BSD 2-Clause "Simplified" License
101 stars 46 forks source link

Wrong Space.update() examples in the manual #48

Closed akopytov closed 8 years ago

akopytov commented 9 years ago

All Space.update() examples in the manual use the following syntax:

Space.update(key, [(fieldno, op, value)])

However, the actual syntax expected by the driver is:

Space.update(key, [(op, fieldno, value)])
xHasKx commented 9 years ago

Fixing in pull request https://github.com/tarantool/tarantool-python/pull/52

bigbes commented 8 years ago

Superseeded by #67