summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-17 21:19:38 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-17 21:19:38 +0200
commitbd5e15fd5c7e42505d6b0e20f4198d24fc7e219d (patch)
tree70e3f86ae76494fc094bbe25c58ba2befbcf4872 /src/main.c
parent02c707a87da1b0f78d10a689cc03941a2e8acbc6 (diff)
downloadvim-bd5e15fd5c7e42505d6b0e20f4198d24fc7e219d.zip
Added support for Python 3. (Roland Puntaier)
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 8f0907377..cce99cd13 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1405,6 +1405,9 @@ getout(exitval)
#ifdef FEAT_PYTHON
python_end();
#endif
+#ifdef FEAT_PYTHON3
+ python3_end();
+#endif
#ifdef FEAT_PERL
perl_end();
#endif