alcemirfernandes / pynguin

Automatically exported from code.google.com/p/pynguin
GNU General Public License v3.0
0 stars 0 forks source link

Use of input function doesn't return. Maybe foresee alternative/overridden input method. #46

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. try to use the input function from the interactive window
2. name = input("what is your name ?")
3. this leaves the prompt, and we don't return to the prompt after hitting 
enter. 

What is the expected output? What do you see instead?
Expected:
>>> name = input("what is  your name ?")
what is  your name ? wim
>>> print name
wim

or
name = input("what is your name ? ")
-> an input dialog pops up to get the input. when leaving the dialog the progam 
continues or interactive interpretor prompt is returned. 

Instead
>>> name = input("what is  your name ?")
what is  your name ? wim
(no mechanism to "return"). 

What version of the product are you using? On what operating system?
0.9 / linux ubuntu 

Please provide any additional information below.

Original issue reported on code.google.com by wim.ocke...@gmail.com on 27 Oct 2010 at 6:39

GoogleCodeExporter commented 9 years ago

Original comment by miss...@hotmail.com on 27 Oct 2010 at 10:17