bug in TkComm::list?

G

Geoff Belknap

I'm running into a weird behavior while using TkComm::list and
TkComm::tk_tcl2ruby

ruby-1.9.1-p378 > data = "2.00 21 2"
=> "2.00 21 2"
ruby-1.9.1-p378 > TkComm::list(data)
=> [2.0, 21, 2]
ruby-1.9.1-p378 > TkComm::tk_tcl2ruby(data)
=> [2.0, 21, 2]

With those methods, I'm losing a zero...

But if I break down and just use split:

ruby-1.9.1-p378 > data.split
=> ["2.00", "21", "2"]

Is this a bug? or poor use of the TkComm::list and tk_tcl2ruby methods?
 
H

Hidetoshi NAGAI

From: Geoff Belknap <[email protected]>
Subject: bug in TkComm::list?
Date: Thu, 15 Jul 2010 07:21:09 +0900
Message-ID: said:
I'm running into a weird behavior while using TkComm::list and
TkComm::tk_tcl2ruby

Those methods convert a tcl string to a Numeric object, if the string
can be a description of a numeric value.
If you want to get each element as a string, please use TkComm.simplelist.
----------------------------------------------
irb(main):001:0> data = "2.00 {21 22 23} 2"
=> "2.00 {21 22 23} 2"
irb(main):002:0> TkComm::list(data)
=> [2.0, [21, 22, 23], 2]
irb(main):003:0> TkComm::simplelist(data)
=> ["2.00", "21 22 23", "2"]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,147
Messages
2,570,835
Members
47,383
Latest member
EzraGiffor

Latest Threads

Top