Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv26331
Modified Files:
tran.py
Log Message:
added the Dollar unique stackable item
Index: tran.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/tran.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- tran.py 16 Apr 2003 20:49:51 -0000 1.22
+++ tran.py 16 Apr 2003 20:54:41 -0000 1.23
@@ -44,8 +44,10 @@
def __str__ (this):
return this.name
class UniqueToken (Unique, Token): pass
+class UniqueStackable (Unique, Stackable): pass
Semicolon = UniqueToken(';')
+Dollar = UniqueStackable('$')
class Lexer (shlex):
def __init__ (this, filename):
|