diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-09 19:56:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-09 19:56:08 +0100 |
commit | de323093e1be165a3eadd1ab3d02942358cd97bf (patch) | |
tree | 088f65bfbec9f716e6e9e46936b13110c6d100a3 /runtime/doc/if_pyth.txt | |
parent | 040c1feb212568cf04265e59b26182f8b76057aa (diff) | |
download | vim-git-de323093e1be165a3eadd1ab3d02942358cd97bf.tar.gz |
patch 8.0.1280: Python None cannot be converted to a Vim typev8.0.1280
Problem: Python None cannot be converted to a Vim type.
Solution: Convert it to v:none. (Ken Takata)
Diffstat (limited to 'runtime/doc/if_pyth.txt')
-rw-r--r-- | runtime/doc/if_pyth.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt index d1dc845b6..8f96e4149 100644 --- a/runtime/doc/if_pyth.txt +++ b/runtime/doc/if_pyth.txt @@ -715,6 +715,8 @@ To facilitate bi-directional interface, you can use |pyeval()| and |py3eval()| functions to evaluate Python expressions and pass their values to Vim script. |pyxeval()| is also available. +The Python value "None" is converted to v:none. + ============================================================================== 9. Dynamic loading *python-dynamic* |