In response to the feature request:
Does anyone see any disadvantage to making Text.__init__ and
Text.set_text() either try to call the __str__ method, or use the str()
builtin, if passed an argument that is not a string? Maybe there is no
need to even check--just automatically use str(arg)?
On 3/17/07, Eric Firing <[EMAIL PROTECTED]> wrote:
> In response to the feature request:
>
> Does anyone see any disadvantage to making Text.__init__ and
> Text.set_text() either try to call the __str__ method, or use the str()
> builtin, if passed an argument that is not a string? Maybe there is
John Hunter wrote:
> On 3/17/07, Eric Firing <[EMAIL PROTECTED]> wrote:
>> In response to the feature request:
>>
>> Does anyone see any disadvantage to making Text.__init__ and
>> Text.set_text() either try to call the __str__ method, or use the str()
>> builtin, if passed an argument that is not