From b7726792a935af851207df245fddb99179d687a5 Mon Sep 17 00:00:00 2001 From: "Patrick K. O'Brien" Date: Sat, 19 Apr 2003 22:18:03 +0000 Subject: [PATCH] Remove autocomplete list size restriction. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20307 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/py/editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wxPython/wxPython/py/editor.py b/wxPython/wxPython/py/editor.py index 46713a1f42..7114faf97d 100644 --- a/wxPython/wxPython/py/editor.py +++ b/wxPython/wxPython/py/editor.py @@ -698,7 +698,7 @@ class Editor: includeMagic=self.window.autoCompleteIncludeMagic, includeSingle=self.window.autoCompleteIncludeSingle, includeDouble=self.window.autoCompleteIncludeDouble) - if list and len(list) < 2000: + if list: options = ' '.join(list) offset = 0 self.window.AutoCompShow(offset, options)