dabo Commit
Revision 4259
Date: 2008-07-09 13:15:13 -0700 (Wed, 09 Jul 2008)
Author: Paul
Trac: http://svn.dabodev.com/trac/dabo/changeset/4259

Changed:
U   trunk/dabo/ui/uiwx/dTextBox.py

Log:
This commit confirms Paul Mabey's observation that the 'L' appears in
textboxes when the value is long.

Run dTextBox.py to see it.



Diff:
Modified: trunk/dabo/ui/uiwx/dTextBox.py
===================================================================
--- trunk/dabo/ui/uiwx/dTextBox.py      2008-07-09 18:39:15 UTC (rev 4258)
+++ trunk/dabo/ui/uiwx/dTextBox.py      2008-07-09 20:15:13 UTC (rev 4259)
@@ -40,6 +40,10 @@
        class IntText(TestBase):
                def afterInit(self):
                        self.Value = 23
+       
+       class LongText(TestBase):
+               def afterInit(self):
+                       self.Value = long(23)
                
        class FloatText(TestBase):
                def afterInit(self):
@@ -68,7 +72,7 @@
                def afterInit(self):
                        self.Value = datetime.datetime.now()
        
-       testParms = [IntText, FloatText, StrText, PWText, BoolText, DateText, 
DateTimeText]
+       testParms = [IntText, LongText, FloatText, StrText, PWText, BoolText, 
DateText, DateTimeText]
        
        try:
                import mx.DateTime




_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]

Reply via email to