New submission from R.D. floyd :
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
messages: 86609
nos
Walter Dörwald 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
status: open -> clo