Re: infinity stringification bug in Perl 5.9.0?

2003-09-04 Thread Yitzchak Scott-Thoennes
On Wed, Sep 03, 2003 at 11:23:44PM +, [EMAIL PROTECTED] wrote: I've got a report that Perl 5.9.0 stringifies infinity and minus infinity with extra spaces, like this: -Inf Inf Is this a bug? Works correctly for me. What do perl -V and perl -V:d_Gconvert

Re: DateTime::Set - Number of elements in set

2003-09-04 Thread Rick Measham
Flavio S. Glock wrote: Sets of type 4 are 'huge sets'. These have an 'unknown' count. The count can be thousands or even millions of dates, but it is not infinite. - or two or three - Before version 0.10, you would run out of memory if you specified something like all seconds in the century.

Re: Set modules - Perl 5.005_03

2003-09-04 Thread Mathieu Arnold
+-le 02/09/2003 10:20 -0300, Flavio S. Glock écrivait : | The 'Set' modules now run with Perl 5.005_03. | | If you have access to DateTime CVS, you can update the following | modules: | | - Set::Infinite | - DateTime::Event::Recurrence | - DateTime::Event::ICal I'll add

Re: DateTime::Set - Number of elements in set

2003-09-04 Thread Flavio S. Glock
Rick Measham wrote: Flavio S. Glock wrote: Sets of type 4 are 'huge sets'. These have an 'unknown' count. The count can be thousands or even millions of dates, but it is not infinite. - or two or three - Two or three are ok :) Before version 0.10, you would run out of memory if you

Re: Set modules - Perl 5.005_03

2003-09-04 Thread Flavio S. Glock
Dave: Can you check these failures? t/02duration..NOK 43# Failed test (t/02duration.t at line 92) t/02duration..NOK 49# Failed test (t/02duration.t at line 99) # got: '+P4W2D' # expected: '-P4W2D' (DateTime::Format::ICal, Perl 5.00503) The other failing

Re: Set modules - Perl 5.005_03

2003-09-04 Thread Mathieu Arnold
+-le 04/09/2003 10:48 -0300, Flavio S. Glock écrivait : | Dave: | | Can you check these failures? | | t/02duration..NOK 43# Failed test (t/02duration.t at line 92) | | t/02duration..NOK 49# Failed test (t/02duration.t at line 99) | # got: '+P4W2D' | #

Re: Set modules - Perl 5.005_03

2003-09-04 Thread Flavio S. Glock
Ok, I found the problem - I'll fix it. - Flavio S. Glock Mathieu Arnold wrote: +-le 04/09/2003 10:48 -0300, Flavio S. Glock écrivait : | Dave: | | Can you check these failures? | | t/02duration..NOK 43# Failed test (t/02duration.t at line 92) | | t/02duration..NOK 49#

Re: DateTime::Set - Number of elements in set

2003-09-04 Thread Dave Rolsky
On Tue, 3 Sep 2003, Rick Measham wrote: ALSO If we go this path or not, I'd prefer not to get plain undef back. I'd like an indication that it was 'too hard to count', or that it was 'over 10,000'. But undef means unknown, and if we can't count, we don't know how many elements are in the set.

ANNOUNCE: DateTime::Format::ICal 0.08

2003-09-04 Thread Dave Rolsky
0.08 2003-09-04 - Negative durations were formatted as positive with Perl 5.00503. Fixed by Flavio Glock. -dave /*=== House Absolute Consulting www.houseabsolute.com ===*/

Problem with DateTime::Format::DateManip v0.01

2003-09-04 Thread Jonathan Leffler
Hi, Thanks to Eugene for fixing up a new release of DateTime::Calendar::Pataphysical - that works (for me, anyway). I'm having consistent problems with DateTime::Format::DateManip v0.01, on both Solaris 8 and MacOS X 10.2.6 with Perl 5.8.1. Extracting DateTime-Format-DateManip-0.01/README

Re: Problem with DateTime::Format::DateManip v0.01

2003-09-04 Thread Dave Rolsky
On Thu, 4 Sep 2003, Jonathan Leffler wrote: I don't know if it is significant that I'm running in US/Pacific time zone, which is 3 hours adrift from US/Eastern - it doesn't seem to be that simple as running with TZ=US/Eastern does not alter the answers. It's probably that simple. Simply

Re: Problem with DateTime::Format::DateManip v0.01

2003-09-04 Thread Dave Rolsky
On Thu, 4 Sep 2003, Dave Rolsky wrote: On Thu, 4 Sep 2003, Jonathan Leffler wrote: I don't know if it is significant that I'm running in US/Pacific time zone, which is 3 hours adrift from US/Eastern - it doesn't seem to be that simple as running with TZ=US/Eastern does not alter the

Re: Problem with DateTime::Format::DateManip v0.01

2003-09-04 Thread David Wheeler
On Thursday, September 4, 2003, at 12:53 PM, Dave Rolsky wrote: It's probably that simple. Simply setting the TZ env var probably won't do much. An app has to call POSIX::tzset() for that take effect. I find that for most date and time handling I do, just setting $ENV{TZ} does the trick --