diff runtime/doc/if_pyth.txt @ 10140:b11ceef7116e

commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 6 22:12:34 2016 +0200 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Sep 2016 22:15:08 +0200
parents 39cc63e8df7c
children 9f48eab77d62
line wrap: on
line diff
--- a/runtime/doc/if_pyth.txt
+++ b/runtime/doc/if_pyth.txt
@@ -1,4 +1,4 @@
-*if_pyth.txt*   For Vim version 7.4.  Last change: 2015 Nov 10
+*if_pyth.txt*   For Vim version 7.4.  Last change: 2016 Sep 01
 
 
 		  VIM REFERENCE MANUAL    by Paul Moore
@@ -56,7 +56,11 @@ Example: >
 			print 'EAT ME'
 	EOF
 	endfunction
-<
+
+To see what version of Python you have: >
+	:python import sys
+	:python print(sys.version)
+
 Note: Python is very sensitive to the indenting.  Make sure the "class" line
 and "EOF" do not have any indent.
 
@@ -745,6 +749,10 @@ The `:py3` and `:python3` commands work 
 if the `:py3` command is working: >
 	:py3 print("Hello")
 <							*:py3file*
+To see what version of Python you have: >
+	:py3 import sys
+	:py3 print(sys.version)
+
 The `:py3file` command works similar to `:pyfile`.
 							*:py3do*
 The `:py3do` command works similar to `:pydo`.