The identify() description didn't match the code. Fixed.

This commit is contained in:
Jack Jansen 2003-04-16 13:10:53 +00:00
parent 36b5198381
commit 36d49a907f

View File

@ -1177,7 +1177,7 @@ def identify(str):
"""Turn any string into an identifier:
- replace space by _
- replace other illegal chars by _xx_ (hex code)
- prepend _ if the result is a python keyword
- append _ if the result is a python keyword
"""
if not str:
return "empty_ae_name_"