Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:28375 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 35471 invoked by uid 1010); 16 Mar 2007 21:57:04 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 35456 invoked from network); 16 Mar 2007 21:57:04 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Mar 2007 21:57:04 -0000 Authentication-Results: pb1.pair.com header.from=zoe.slattery@googlemail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=zoe.slattery@googlemail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain googlemail.com designates 209.85.132.251 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: zoe.slattery@googlemail.com X-Host-Fingerprint: 209.85.132.251 an-out-0708.google.com Received: from [209.85.132.251] ([209.85.132.251:61270] helo=an-out-0708.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 58/EA-24647-FA21BF54 for ; Fri, 16 Mar 2007 16:57:04 -0500 Received: by an-out-0708.google.com with SMTP id c28so794340ana for ; Fri, 16 Mar 2007 14:57:01 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=googlemail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; b=ZLOY4jX/t4xkhUSKi1T9Ts3H+k7SG4Cky9R7kP8HpRzkPsGZKFtnYeA9rwIN4HwaRjE7UikqDSY02T7/bI3zMjW6y7iAuQCxkGY3DFbISjs6mtKWfLljVk9JGQMA2RS6Qklx0z0o2+nt7s2cYnoS1ulJ1Sz8GLexyVK1ucbrz18= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; b=lMObINGO7RstyFWwCLcPq60W2662Dr1bcqojnncUHpAp1/sOsKqQluH604fsQKUld50ZDn5I7ifhpCxEHlcqLbNgqPQgur91RNvicU5s14XTOxfosKK6MDmSFosyKrEtv2JtXvGD96Gsrt/5eROvCs0+/Ceuzpz5+6YOwHcXRZc= Received: by 10.100.93.5 with SMTP id q5mr1918001anb.1174082220472; Fri, 16 Mar 2007 14:57:00 -0700 (PDT) Received: from ?192.168.1.103? ( [81.146.27.153]) by mx.google.com with ESMTP id d21sm4319435and.2007.03.16.14.56.56; Fri, 16 Mar 2007 14:56:59 -0700 (PDT) Message-ID: <45FB129C.5030907@googlemail.com> Date: Fri, 16 Mar 2007 21:56:44 +0000 User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Marcus Boerger , internals@lists.php.net References: <45F8173F.3010902@googlemail.com> <622207866.20070314203432@marcus-boerger.de> <45FAA90C.7070006@googlemail.com> <755864469.20070316183914@marcus-boerger.de> In-Reply-To: <755864469.20070316183914@marcus-boerger.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] php.ini and PHPT From: zoe.slattery@googlemail.com (Zoe Slattery) Hi Marcus Marcus Boerger wrote: > Then I saw you changed a hell lot of expectations from "(-%d)" to "(%i)". > While this pretty much works it drops an important detail of the expectation. > The old version was aware of the sign of the result while the new one is not. > That means that now you might fix a bug in those functions that lead to an > erroneous change in the sign and not being able to detect that. Though a lot > os code is relying on the sign (e.g. any sorting algorithm). > Eek - then I misunderstood what %i does, as you saw, I had originally used %d - it's easy enough to change back :-) > Do b) and be as precise as possible. That means we usually even test for the > name of the testfile in the message excluding the directory and any > (back)slash. > Will do - thanks for the feedback, it's really helpful >