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 terry.reedy
Recipients serhiy.storchaka, terry.reedy
Date 2015-04-07.18:09:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428430145.97.0.176581246752.issue23880@psf.upfronthosting.co.za>
In-reply-to
Content
I don't quite understand this, but I think I should.  Here are preliminary questions.

0.  It seems that this pushes conversions from python code (app.py, tkinter.py) to C (_tkinter.py).  Correct?  What is being gained from a user viewpoint?

1. "getint, getdouble and getboolean were thin wrappers around Tcl functions that converted string result of Tcl call to specified Python type."

How does this match getint and getdouble being synonyms for builtins?
-    getint = int
-    getdouble = float
Or were 'int' and 'float' overriden before this?

2. Does the change break existing code?  In particular, is the idlelib change necessary or optional?

3. Should there be a doc change, at least in docstrings?
History
Date User Action Args
2015-04-07 18:09:06terry.reedysetrecipients: + terry.reedy, serhiy.storchaka
2015-04-07 18:09:05terry.reedysetmessageid: <1428430145.97.0.176581246752.issue23880@psf.upfronthosting.co.za>
2015-04-07 18:09:05terry.reedylinkissue23880 messages
2015-04-07 18:09:05terry.reedycreate