diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-08-25 02:57:28 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-08-25 02:57:28 +0000 |
commit | db60d6e2aa45fdc9f5f560847238a120e8a34f04 (patch) | |
tree | 8feb2b7aac612d69088c30ef609f4d91acf07df2 /Modules/cgen.py | |
parent | 553a0296e93ee387ee04b27b3ba408f33e63dc8b (diff) | |
download | cpython-git-db60d6e2aa45fdc9f5f560847238a120e8a34f04.tar.gz |
Remove more '<>' usage.
Diffstat (limited to 'Modules/cgen.py')
-rw-r--r-- | Modules/cgen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cgen.py b/Modules/cgen.py index f07d9843bd..f28f85e163 100644 --- a/Modules/cgen.py +++ b/Modules/cgen.py @@ -148,7 +148,7 @@ def checkarg(type, arg): # N*argN # N*retval # - if rest[:1] <> '[' or rest[-1:] <> ']': + if rest[:1] != '[' or rest[-1:] != ']': raise arg_error, ('subscript expected', rest) sub = rest[1:-1] # |