summaryrefslogtreecommitdiffstats
path: root/runtime/doc/if_pyth.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-11-09 19:56:08 +0100
committerBram Moolenaar <Bram@vim.org>2017-11-09 19:56:08 +0100
commitde323093e1be165a3eadd1ab3d02942358cd97bf (patch)
tree088f65bfbec9f716e6e9e46936b13110c6d100a3 /runtime/doc/if_pyth.txt
parent040c1feb212568cf04265e59b26182f8b76057aa (diff)
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.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt
index d1dc845b64..8f96e41491 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*