rev 556 - in trunk: . docs/tutorial

SVN User <[email protected]> Thu, 27 May 2004 01:03:26 -0400
Newsgroups gmane.comp.lang.prothon.cvs
Message-ID <[email protected]>
Author: mark
Date: 2004-05-27 01:03:24 -0400 (Thu, 27 May 2004)
New Revision: 556

Modified:
   trunk/STATUS.txt
   trunk/docs/tutorial/tutorial8.htm
Log:
status update, typos in tutorial

Modified: trunk/STATUS.txt
===================================================================
--- trunk/STATUS.txt	2004-05-27 00:36:16 UTC (rev 555)
+++ trunk/STATUS.txt	2004-05-27 05:03:24 UTC (rev 556)
@@ -1,6 +1,10 @@
 
 ----------------------- TO-DO (highest priority first) ------------------------
 
+--- import (string variable)
+
+--- Swig and/or other (what GTK port used?) backend
+
 --- GNU message calalog _"abc" strings
 
 --- Add properties methods: get_,  set_, delete_
@@ -12,12 +16,14 @@
 --- Fix error reporting mess, hide fake file names
 
 --- resolve binary vs. strings vs. unicode
+--- unicode support
+--- change all strings to resource file
 --- code in binary string (all binary data in binary string?)
 --- new integrated binary obj_malloc?
 
 --- allow strings to compare with symbols
 
---- add conditional expression " if C then x else y"
+--- add conditional expression "if C then x else y"
 
 --- Auto-documenter app
 
@@ -86,16 +92,18 @@
 
 add function version of print (write)
 
-Full unicode support like Java -- store compressed ucs4 ?
+sets and other zephyr email items 
 
-sets and other zephyr email items -- use <> ?
-
 remove \ continuation ?
 
 Python add-on C module adapter for Prothon
-Swig or other (what GTK port used?) backend
 auto python -> prothon source converter
 
+add/replace int and float single decimal type with bounded precision and floating point. 
+				http://www.python.org/peps/pep-0327.html
+
+Syntax extension modifier -- language spec?
+
 Guido's regret list for Python
 	drop 3-way compare? (but... comparing lists) (what is this MCH?)
 	use (...) continuation
@@ -121,12 +129,8 @@
 	need differentiate to __int__ which
 		truncates and __int__ which doesn't
 
-add/replace int and float single decimal type with bounded precision and floating point. 
-				http://www.python.org/peps/pep-0327.html
 
-Syntax extension modifier -- language spec?
 
-
 ------------------------------ speedups ---------------------------------------
 
 Inline asm for lock code up to wrlock acquire and access check

Modified: trunk/docs/tutorial/tutorial8.htm
===================================================================
--- trunk/docs/tutorial/tutorial8.htm	2004-05-27 00:36:16 UTC (rev 555)
+++ trunk/docs/tutorial/tutorial8.htm	2004-05-27 05:03:24 UTC (rev 556)
@@ -133,7 +133,7 @@
         <p><font face="Verdana, Arial, Helvetica, sans-serif" size="+2"><a name="copydis"></a></font>You 
           may have noticed that the instances created above by the copy commands 
           above have some disadvantages compared to object-oriented intances made 
-          by classes. The biggest problem is storage efficiency. Each of one the 
+          by classes. The biggest problem is storage efficiency. Each one of the 
           rectangle instance objects has its very own copy of the area method. 
           Also, what if these objects are stored away somewhere and we decide 
           we want to make an improvement to the Prothon code for the area method?