rev 426 - in trunk: . pr

SVN User <[email protected]> Wed, 28 Apr 2004 03:22:14 -0400
Newsgroups gmane.comp.lang.prothon.cvs
Message-ID <[email protected]>
Author: mark
Date: 2004-04-28 03:22:11 -0400 (Wed, 28 Apr 2004)
New Revision: 426

Modified:
   trunk/STATUS.txt
   trunk/pr/new.pr
Log:
cleaned up new.pr

Modified: trunk/STATUS.txt
===================================================================
--- trunk/STATUS.txt	2004-04-28 07:19:46 UTC (rev 425)
+++ trunk/STATUS.txt	2004-04-28 07:22:11 UTC (rev 426)
@@ -6,7 +6,6 @@
 --- New delgation
 --- Bound methods - binding - calling
 
-
 --- Add missing string functions
 
 --- add support for APR_BINARY in File.c ('b' flag)

Modified: trunk/pr/new.pr
===================================================================
--- trunk/pr/new.pr	2004-04-28 07:19:46 UTC (rev 425)
+++ trunk/pr/new.pr	2004-04-28 07:22:11 UTC (rev 426)
@@ -2,7 +2,6 @@
 
 def New(proto, *args, **kwargs):
     newObj = Proto(proto)
-    []
     newObj.__init__(*args, **kwargs)
     return newObj
 
@@ -14,6 +13,12 @@
 	def $__str__():
 		return '*'+$x+'*'
 
+print
+print 'Should print ...'
+print '*1*'
+print '*a*'
+print
+
 x = New(p, 1)
 print x