-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #126
- Loading branch information
Sergei Voronezhskii
committed
Oct 16, 2018
1 parent
b85d7ed
commit 2dd3b58
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule tarantool-python
updated
25 files
+5 −0 | .gitignore | |
+76 −18 | .travis.yml | |
+8 −0 | Jenkinsfile | |
+1 −1 | Makefile | |
+4 −0 | README.rst | |
+36 −0 | debian/changelog | |
+2 −2 | debian/control | |
+0 −2 | requirements.txt | |
+4 −6 | rpm/tarantool-python.spec | |
+0 −2 | setup.py | |
+10 −7 | tarantool/__init__.py | |
+175 −68 | tarantool/connection.py | |
+15 −11 | tarantool/const.py | |
+157 −49 | tarantool/error.py | |
+39 −28 | tarantool/request.py | |
+85 −39 | tarantool/response.py | |
+131 −34 | tarantool/schema.py | |
+1 −1 | tarantool/space.py | |
+30 −5 | tarantool/utils.py | |
+2 −0 | test.sh | |
+1 −4 | tests/setup_command.py | |
+1 −1 | tests/suites/lib/tarantool_server.py | |
+149 −76 | tests/suites/test_dml.py | |
+5 −0 | tests/suites/test_schema.py | |
+14 −0 | tox.ini |