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 russellballestrini
Recipients Claudiu.Popa, russellballestrini, tim.peters, zach.ware
Date 2014-04-25.04:05:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398398734.48.0.359682595116.issue21344@psf.upfronthosting.co.za>
In-reply-to
Content
At some point I plan to write a web API that accepts a word, 'doge' and returns a list of possible suggestions and scores.  Later a "did you mean dog" style suggestion could be implemented on top.

We compute the scores, and it is computationally taxing, we shouldn't always throw this data away.  Most users will continue to use get_close_matches, some users might want to build indexes on the scores.  

Other users may want to cache (memonize) common queries for super fast look ups.  Additionally the new function will give end-users the opportunity to inspect the scoring algos output.

I prefer to use the same arg spec because it is already widely understood and documented.
History
Date User Action Args
2014-04-25 04:05:34russellballestrinisetrecipients: + russellballestrini, tim.peters, Claudiu.Popa, zach.ware
2014-04-25 04:05:34russellballestrinisetmessageid: <1398398734.48.0.359682595116.issue21344@psf.upfronthosting.co.za>
2014-04-25 04:05:34russellballestrinilinkissue21344 messages
2014-04-25 04:05:33russellballestrinicreate