Re: [Python-Dev] Python 3.4 version in the tracker

2011-03-14 Thread Georg Brandl
Am 13.03.2011 14:47, schrieb Eric Smith: > On 03/13/2011 06:49 AM, Georg Brandl wrote: >> On 12.03.2011 17:09, Eric Smith wrote: >>> On 03/12/2011 10:55 AM, Éric Araujo wrote: > I have a deprecation warning that I need to make an error in 3.4. A neat trick to remember to do those chan

Re: [Python-Dev] Python 3.4 version in the tracker

2011-03-13 Thread Eric Smith
On 03/13/2011 06:49 AM, Georg Brandl wrote: On 12.03.2011 17:09, Eric Smith wrote: On 03/12/2011 10:55 AM, Éric Araujo wrote: I have a deprecation warning that I need to make an error in 3.4. A neat trick to remember to do those changes is using a test that fails if something does not raise a

Re: [Python-Dev] Python 3.4 version in the tracker

2011-03-13 Thread Georg Brandl
On 12.03.2011 17:09, Eric Smith wrote: > On 03/12/2011 10:55 AM, Éric Araujo wrote: >>> I have a deprecation warning that I need to make an error in 3.4. >> >> A neat trick to remember to do those changes is using a test that fails >> if something does not raise a DeprecationWarning if sys.version_

Re: [Python-Dev] Python 3.4 version in the tracker

2011-03-12 Thread Eric Smith
On 03/12/2011 10:55 AM, Éric Araujo wrote: I have a deprecation warning that I need to make an error in 3.4. A neat trick to remember to do those changes is using a test that fails if something does not raise a DeprecationWarning if sys.version_info[:2] == (3, 3), or an error if sys.version_inf

Re: [Python-Dev] Python 3.4 version in the tracker

2011-03-12 Thread Antoine Pitrou
On Sat, 12 Mar 2011 16:55:30 +0100 Éric Araujo wrote: > > I have a deprecation warning that I need to make an error in 3.4. > > A neat trick to remember to do those changes is using a test that fails > if something does not raise a DeprecationWarning if sys.version_info[:2] > == (3, 3), or an err

Re: [Python-Dev] Python 3.4 version in the tracker

2011-03-12 Thread Éric Araujo
> I have a deprecation warning that I need to make an error in 3.4. A neat trick to remember to do those changes is using a test that fails if something does not raise a DeprecationWarning if sys.version_info[:2] == (3, 3), or an error if sys.version_info[:3] == (3, 4). You write those tests once

Re: [Python-Dev] Python 3.4 version in the tracker

2011-03-12 Thread Martin v. Löwis
Am 12.03.11 09:26, schrieb Eric Smith: Could someone with the right access add a "Python 3.4" version to the tracker? Done. I'd also like to make it a release blocker in 3.4 so I don't forget about it. If I do that, will it screw up any release workflow? I don't think so. As release manager