rev 710 - in trunk: . include/prothon
SVN User <[email protected]> Tue, 06 Jul 2004 00:59:31 -0400
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mark Date: 2004-07-06 00:59:28 -0400 (Tue, 06 Jul 2004) New Revision: 710 Modified: trunk/CHANGES.txt trunk/include/prothon/prothon.h Log: *** release build 710 *** increased depth of as_str printing to 16 Modified: trunk/CHANGES.txt =================================================================== --- trunk/CHANGES.txt 2004-07-06 03:20:49 UTC (rev 709) +++ trunk/CHANGES.txt 2004-07-06 04:59:28 UTC (rev 710) @@ -1,7 +1,7 @@ ----- Prothon Release History ---- -Version 0.1.2 - Build 709 - 7/05/04 +Version 0.1.2 - Build 710 - 7/06/04 - print is now a function, not a keyword - function-as-command feature allows print to be used without parens - Added prop keyword and properties feature with wildcards @@ -29,7 +29,6 @@ - except syntax changed from "except exc, var" to "except exc as var" - Function formal params now introspectable via simple attribute - *args param local variable in func is now a tuple, not a list - - Fixed raise keyword so second arg is doc_ attribute of first - Added immutable check to dictionary function key parameter - Added Dict.len_ and Dict.bool_? - Moved File from extension module to built-in @@ -42,6 +41,7 @@ - Change symbol prefix from backtick (`var) to dollar-sign ($var) - Changed console prompt from >>> to O>> - Added many new *.pr test files + - Fixed raise keyword so second arg is doc_ attribute of first - Fixed crash on printing recursive containers, now prints ... - Fixed assignment from sequences to arg lists and for statements - Fixed import in console Modified: trunk/include/prothon/prothon.h =================================================================== --- trunk/include/prothon/prothon.h 2004-07-06 03:20:49 UTC (rev 709) +++ trunk/include/prothon/prothon.h 2004-07-06 04:59:28 UTC (rev 710) @@ -81,7 +81,7 @@ #endif #define PROTHON_VERSION_NUMBER "0.1" -#define PROTHON_VERSION_BUILD "$Rev: 709$" +#define PROTHON_VERSION_BUILD "$Rev: 710$" #define PROTHON_VERSION_DATE __DATE__ #ifndef FALSE @@ -98,7 +98,7 @@ #endif //************************* SOME APPLICATION TUNING *************************** -#define AS_STR_MAX_DEPTH 8 +#define AS_STR_MAX_DEPTH 16 #define MAX_UNICODE_VALUE 0x10ffff //************************* BASIC TYPE DEFINITIONS ****************************