diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-04-19 00:44:26 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-04-19 00:44:26 -0400 |
commit | 0ba12c6691261d48e468776c43a6a8ea781f5dcc (patch) | |
tree | 32ee59f60db9e11b1e175fb08efe14abda30259f /runtime/autoload/python3complete.vim | |
parent | f3d6c443d98e06adcb3bfb7e7edd4d9be9588092 (diff) | |
parent | 0d264abdd070bf28540e12465ee6e36f0d0a06c7 (diff) | |
download | rneovim-0ba12c6691261d48e468776c43a6a8ea781f5dcc.tar.gz rneovim-0ba12c6691261d48e468776c43a6a8ea781f5dcc.tar.bz2 rneovim-0ba12c6691261d48e468776c43a6a8ea781f5dcc.zip |
Merge pull request #4603 from dbarnett/vim-ca63501
vim-patch:ca63501
Diffstat (limited to 'runtime/autoload/python3complete.vim')
-rw-r--r-- | runtime/autoload/python3complete.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/autoload/python3complete.vim b/runtime/autoload/python3complete.vim index b02200be7f..f0f3aaddb3 100644 --- a/runtime/autoload/python3complete.vim +++ b/runtime/autoload/python3complete.vim @@ -1,7 +1,7 @@ "python3complete.vim - Omni Completion for python " Maintainer: Aaron Griffin <aaronmgriffin@gmail.com> " Version: 0.9 -" Last Updated: 18 Jun 2009 +" Last Updated: 18 Jun 2009 (small fix 2015 Sep 14 from Debian) " " Roland Puntaier: this file contains adaptations for python3 and is parallel to pythoncomplete.vim " @@ -359,6 +359,7 @@ class PyParser: def __init__(self): self.top = Scope('global',0) self.scope = self.top + self.parserline = 0 def _parsedotname(self,pre=None): #returns (dottedname, nexttoken) |