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 eric.araujo
Recipients Trundle, Valery.Khamenya, eric.araujo, ezio.melotti, facundobatista, georg.brandl, rbp
Date 2010-11-22.14:10:37
SpamBayes Score 0.035228036
Marked as misclassified No
Message-id <1290435039.53.0.131589953924.issue10351@psf.upfronthosting.co.za>
In-reply-to
Content
Review time!

+            elif "[" in text:
+                self.matches = self.dict_key_matches(text)
Does this complete only dicts?  What about other mappings?  What about other sequences implementing __getitem__?  One of the function name and the function docstring (“Compute matches when text contains a [”) is wrong.

I’m not familiar with rlcompleter’s internals, so I’d like a few comments sprinkled in the code.

Please wrap your lines at 79 columns, and follow other advice given at http://www.python.org/dev/patches/ for the next version of your patch.

+        The evaluation of the part before the '[' could be enhanced.
This belongs in a comment or a test, not the docstring.

+                          'DictCompleteMe[\'öh, вау!\']',
I find it more readable to avoid escaped quotes whenever possible.  Here I would use "DictCompleteMe['öh, вау!']".
History
Date User Action Args
2010-11-22 14:10:39eric.araujosetrecipients: + eric.araujo, georg.brandl, facundobatista, rbp, ezio.melotti, Trundle, Valery.Khamenya
2010-11-22 14:10:39eric.araujosetmessageid: <1290435039.53.0.131589953924.issue10351@psf.upfronthosting.co.za>
2010-11-22 14:10:37eric.araujolinkissue10351 messages
2010-11-22 14:10:37eric.araujocreate