Changeset 4264

Show
Ignore:
Timestamp:
07/09/2008 01:59:35 PM (3 months ago)
Author:
paul
Message:

Fixed the string displayed in dTextBox for long values to *not* have the L
appended. Ed, please look this over, as you added this in [3828]. I think
that it is largely moot as in the next versions of Python, all ints are
going to be longs, but it may have implications on your dSpinnerX stuff.

Files:

Legend:

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

    r4186 r4264  
    518518        elif value is None: 
    519519            strVal = self.Application.NoneDisplay 
    520         elif isinstance(value, long): 
    521             strVal = value.__repr__() 
    522520        else: 
    523521            # convert all other data types to string: