From a7496ec6179241eb65e53740c0d737770d5a2c09 Mon Sep 17 00:00:00 2001 From: Eevee Date: Mon, 1 Feb 2010 23:50:33 -0800 Subject: [PATCH] Fixed comments in pokedex.lookup. --- pokedex/lookup.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pokedex/lookup.py b/pokedex/lookup.py index 2565fcc..69eedc4 100644 --- a/pokedex/lookup.py +++ b/pokedex/lookup.py @@ -228,10 +228,11 @@ def _whoosh_records_to_results(records, session, exact=True): def lookup(input, valid_types=[], session=None, indices=None, exact_only=False): """Attempts to find some sort of object, given a database session and name. - Returns a list of named (object, name, language, exact) tuples. `object` - is a database object, `name` is the name under which the object was found, - `language` is the name of the language in which the name was found, and - `exact` is True iff this was an exact match. + Returns a list of named (object, name, language, iso3166, exact) tuples. + `object` is a database object, `name` is the name under which the object + was found, `language` and `iso3166` are the name and country code of the + language in which the name was found, and `exact` is True iff this was an + exact match. This function currently ONLY does fuzzy matching if there are no exact matches.