]> granicus.if.org Git - python/commitdiff
The identify() description didn't match the code. Fixed.
authorJack Jansen <jack.jansen@cwi.nl>
Wed, 16 Apr 2003 13:10:53 +0000 (13:10 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Wed, 16 Apr 2003 13:10:53 +0000 (13:10 +0000)
Lib/plat-mac/gensuitemodule.py

index d7206ff80dc2f090833f3993778d78d1fe30dbf3..a5a994cd5d1c200de2ae07bf6c001685d482212d 100644 (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_"