[issue5849] Idle 3.01 - invalid syntec error

2009-04-26 Thread R.D. floyd
New submission from R.D. floyd r2d2fl...@mac.com: Recently upgraded to OS 10.5, Experienced Fortran, Basic, et. al. programmer learning Python. IDLE 3.01 give invalid syntec error when running program below. IDLE from MacPython 2.xx runs it ok! -- components: IDLE files: odbchelper.py

[issue5849] Idle 3.01 - invalid syntec error

2009-04-26 Thread Walter Dörwald
Walter Dörwald wal...@livinglogic.de added the comment: This is not a bug in Python. In Python 3.0 print is a function, so print buildConnectionString(myParams) should read print(buildConnectionString(myParams)) Closing as invalid. -- nosy: +doerwalter resolution: - invalid