Mercurial > p > roundup > code
comparison roundup/token.py @ 1090:9b910e8d987d
removed Log
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 10 Sep 2002 00:19:55 +0000 |
| parents | a1a44636bace |
| children | fc52d57c6c3e |
comparison
equal
deleted
inserted
replaced
| 1089:43ab730ee194 | 1090:9b910e8d987d |
|---|---|
| 6 # | 6 # |
| 7 # This module is distributed in the hope that it will be useful, | 7 # This module is distributed in the hope that it will be useful, |
| 8 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 8 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | 9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 10 # | 10 # |
| 11 # $Id: token.py,v 1.2 2002-01-02 02:31:38 richard Exp $ | 11 # $Id: token.py,v 1.3 2002-09-10 00:18:20 richard Exp $ |
| 12 # | 12 # |
| 13 | 13 |
| 14 __doc__ = """ | 14 __doc__ = """ |
| 15 This module provides the tokeniser used by roundup-admin. | 15 This module provides the tokeniser used by roundup-admin. |
| 16 """ | 16 """ |
| 109 # just add this char to the token and move along | 109 # just add this char to the token and move along |
| 110 token = token + c | 110 token = token + c |
| 111 pos = pos + 1 | 111 pos = pos + 1 |
| 112 return l | 112 return l |
| 113 | 113 |
| 114 # | |
| 115 # $Log: not supported by cvs2svn $ | |
| 116 # Revision 1.1 2001/12/31 05:09:20 richard | |
| 117 # Added better tokenising to roundup-admin - handles spaces and stuff. Can | |
| 118 # use quoting or backslashes. See the roundup.token pydoc. | |
| 119 # | |
| 120 # | |
| 121 # | |
| 122 # vim: set filetype=python ts=4 sw=4 et si | 114 # vim: set filetype=python ts=4 sw=4 et si |
