again another fix for =

This commit is contained in:
David Halter
2012-10-08 10:44:25 +02:00
parent 8e9047158e
commit a8371d37be
2 changed files with 4 additions and 1 deletions

View File

@@ -23,6 +23,9 @@ r"".upper
# strangely this didn't work, because the = is used for assignments
#? ['upper']
"=".upper
a = "="
#? ['upper']
a.upper
# -----------------