This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author doerwalter
Recipients doerwalter, r2d2floyd
Date 2009-04-26.21:57:33
SpamBayes Score 3.5563417e-08
Marked as misclassified No
Message-id <1240783054.59.0.12562239799.issue5849@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2009-04-26 21:57:34doerwaltersetrecipients: + doerwalter, r2d2floyd
2009-04-26 21:57:34doerwaltersetmessageid: <1240783054.59.0.12562239799.issue5849@psf.upfronthosting.co.za>
2009-04-26 21:57:33doerwalterlinkissue5849 messages
2009-04-26 21:57:33doerwaltercreate