Changeset 4259

Show
Ignore:
Timestamp:
07/09/08 13:15:13 (3 months ago)
Author:
paul
Message:

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

Run dTextBox.py to see it.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/ui/uiwx/dTextBox.py

    r3712 r4259  
    4141        def afterInit(self): 
    4242            self.Value = 23 
     43     
     44    class LongText(TestBase): 
     45        def afterInit(self): 
     46            self.Value = long(23) 
    4347         
    4448    class FloatText(TestBase): 
     
    6973            self.Value = datetime.datetime.now() 
    7074     
    71     testParms = [IntText, FloatText, StrText, PWText, BoolText, DateText, DateTimeText] 
     75    testParms = [IntText, LongText, FloatText, StrText, PWText, BoolText, DateText, DateTimeText] 
    7276     
    7377    try: