Remove more '<>' usage.

This commit is contained in:
Brett Cannon 2006-08-25 02:57:28 +00:00
parent 553a0296e9
commit db60d6e2aa
1 changed files with 1 additions and 1 deletions

View File

@ -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]
#