adem0x / pyscripter

Automatically exported from code.google.com/p/pyscripter
0 stars 0 forks source link

instance of <set> type gives wrong hints in editor, correct hints in interpreter #762

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a new module
2. >>> a = {1,2,3}
3. >>> a.

What is the expected output? What do you see instead?
-The hints given are for the <dictionary> type, not <set>
-Note that the above behavior works exactly as expected in the interpreter, 
just not in the editor

What version of the product are you using? On what operating system?
-Pyscripter 2.5.3.0 x64 on Windows 7 Pro x64

Please provide any additional information below.
-None, very easy to reproduce and works fine in the interpreter, just not in 
the editor

Original issue reported on code.google.com by shanesmi...@gmail.com on 6 Feb 2014 at 5:16

GoogleCodeExporter commented 9 years ago
Some additional info:
It works just fine with a = set([1,2,3])
The issue is limited to the a = {1,2,3} notation in the editor

Original comment by shanesmi...@gmail.com on 6 Feb 2014 at 6:26