AeroEng43 / shedskin

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

input problem #33

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. a = input(' ')
2.
3.

What is the expected output? What do you see instead?
To be able to use the input statement. An error from shedskin saying
"*ERROR* age.py:1: unbound identifier 'input'"

What version of the product are you using? On what operating system?
I'm usig shedskin 0.1.1. On windows xp.

Please provide any additional information below.
Please help with this situation. 

Original issue reported on code.google.com by td68...@gmail.com on 20 Jun 2009 at 3:47

GoogleCodeExporter commented 8 years ago
thanks for reporting. 

unfortunately, input() is not supported, because it is too dynamic (that is, it 
can
return any type of object, depending on what you type in). raw_input() is 
supported,
so you might use that instead..

see also issue 26, where the same problem was reported:

http://code.google.com/p/shedskin/issues/detail?id=26

Original comment by mark.duf...@gmail.com on 20 Jun 2009 at 4:36