diff options
author | Richard A Hofer <rofer@google.com> | 2021-01-28 15:35:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-28 12:35:37 -0800 |
commit | 13d9e35858fe8c96f7244bf0e4b66af2b24b59f3 (patch) | |
tree | 55075d6b8bd9f20d89ce3eaeb9a7a84814b33f60 /tests/PythonTest.sh | |
parent | 6effe431bbdef0580b6552a3246f7ec6b3751a2c (diff) | |
download | flatbuffers-13d9e35858fe8c96f7244bf0e4b66af2b24b59f3.tar.gz flatbuffers-13d9e35858fe8c96f7244bf0e4b66af2b24b59f3.tar.bz2 flatbuffers-13d9e35858fe8c96f7244bf0e4b66af2b24b59f3.zip |
Better python generated code naming (#6336)
* Remove a lot of redundancy from the Python generated code.
Update tutorial to reflect new Python generated code.
* Add aliases for newly deprecated Python generated methods.
This should help with backwards compatibility.
* Fix incorrect names in deprecated comments.
Diffstat (limited to 'tests/PythonTest.sh')
-rwxr-xr-x | tests/PythonTest.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/PythonTest.sh b/tests/PythonTest.sh index ebe49bf3..b387ec1b 100755 --- a/tests/PythonTest.sh +++ b/tests/PythonTest.sh @@ -21,6 +21,7 @@ runtime_library_dir=${test_dir}/../python # Emit Python code for the example schema in the test dir: ${test_dir}/../flatc -p -o ${gen_code_path} -I include_test monster_test.fbs --gen-object-api +${test_dir}/../flatc -p -o ${gen_code_path} -I include_test monster_extra.fbs --gen-object-api # Syntax: run_tests <interpreter> <benchmark vtable dedupes> # <benchmark read count> <benchmark build count> |