rev 201 - trunk/pr
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mark
Date: 2004-03-29 21:55:33 -0500 (Mon, 29 Mar 2004)
New Revision: 201
Added:
trunk/pr/bugreport.pr
Log:
added bugreport.pr to go along with bug report #8
Added: trunk/pr/bugreport.pr
===================================================================
--- trunk/pr/bugreport.pr 2004-03-30 01:54:01 UTC (rev 200)
+++ trunk/pr/bugreport.pr 2004-03-30 02:55:33 UTC (rev 201)
@@ -0,0 +1,12 @@
+#!/usr/local/bin/prothon
+
+def findall(r,s):
+ result=[]
+ def foundone(mo):
+ &result.append!(mo.group())
+ return ''
+ r.sub(foundone, s)
+ return result
+
+re = XXX.compile("m..k")
+