aboutsummaryrefslogtreecommitdiff
path: root/runtime/autoload/python3complete.vim
diff options
context:
space:
mode:
authorDavid Barnett <davidbarnett2@gmail.com>2016-04-18 09:15:13 -0700
committerDavid Barnett <davidbarnett2@gmail.com>2016-04-18 21:36:16 -0700
commit0d264abdd070bf28540e12465ee6e36f0d0a06c7 (patch)
tree32ee59f60db9e11b1e175fb08efe14abda30259f /runtime/autoload/python3complete.vim
parentf3d6c443d98e06adcb3bfb7e7edd4d9be9588092 (diff)
downloadrneovim-0d264abdd070bf28540e12465ee6e36f0d0a06c7.tar.gz
rneovim-0d264abdd070bf28540e12465ee6e36f0d0a06c7.tar.bz2
rneovim-0d264abdd070bf28540e12465ee6e36f0d0a06c7.zip
vim-patch:ca63501
Update various runtime files. https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Diffstat (limited to 'runtime/autoload/python3complete.vim')
-rw-r--r--runtime/autoload/python3complete.vim3
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)