Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Interactive Window input window hang 5+ seconds on intellisense popup #3387

Closed
IanMatthewHuff opened this issue May 20, 2019 · 0 comments
Closed
Assignees

Comments

@IanMatthewHuff
Copy link
Member

I'm working with Python 3.7.3 64-bit and I'm using code like the following:
`#%% Imports
import numpy as np
import pandas as pd
from sys import getsizeof

#%% Some big variables
with open('D:\github\Samples\DSPlayground\Books\Content\Moby.txt', 'r', encoding='utf-8') as textFile:
big_string = textFile.read()

big_nparray = np.linspace(0,100000, 50000, endpoint=True)
big_dataframe = pd.DataFrame(big_nparray)
big_series = big_dataframe[0]
big_list = [x ** 2 for x in range(0,100000)]
big_set = set(big_list)
big_dict = {}
big_int = 9999999
big_float = 99.999999
big_complex = complex(1,1)
for value in big_list:
big_dict[value] = value / 2
big_tuple = 1,2,3,4,5,6,7,8,9

big_var_list = ['big_string', 'big_nparray', 'big_dataframe', 'big_series', 'big_list',
'big_set', 'big_dict', 'big_int', 'big_float', 'big_complex','big_tuple']
testing = 'testing'`

Note: just remove the big string line as you won't have that file. In the input window typing in big_ causes a delay of about 5 seconds when loading the completion list. This happens about 50% of the time and also happens when deleting the string. During this time the UI is totally hung.

@rchiodo rchiodo self-assigned this May 20, 2019
@rchiodo rchiodo closed this as completed Aug 6, 2019
@lock lock bot locked as resolved and limited conversation to collaborators Aug 14, 2019
@microsoft microsoft unlocked this conversation Nov 14, 2020
@DonJayamanne DonJayamanne transferred this issue from microsoft/vscode-python Nov 14, 2020
@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 7, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants