Re: [Python-Dev] Python 2.7.13

2017-03-14 Thread Raúl Cumplido
Hi Jorge,

This is the mailing list for the Python language development itself. It's
used for discussion of features and topics on the development of Python.
You can use other mailing lists for questions as:
python-h...@python.org --> ask for help to other people on the python
community
tu...@python.org --> if you are learning 

Kind Regards,
Raul

On Tue, Mar 14, 2017 at 2:32 PM,  wrote:

>
>
> Hi,
>
> I dowloaded the Python 2.7.13 and install it as root . it installed in my
> directory:
>
> /usr/src/Python-2.7.13
>
> Then I typed:
>
> python and I had:
>
> Python 2.7.13 (default, Mar 14 2017, 09:30:46)
> [GCC 4.9.2 20150212 (Red Hat 4.9.2-6)] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
>
>
> Then I did:
>
> import numpy
> Traceback (most recent call last):
>   File "", line 1, in 
> ImportError: No module named numpy
>
>
> import scpy
> Traceback (most recent call last):
>   File "", line 1, in 
> ImportError: No module named scpy
>
>
> import basemap
> Traceback (most recent call last):
>   File "", line 1, in 
> ImportError: No module named basemap
>
>
> Please, what can I do to solve these.
>
>
> Conrado
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: https://mail.python.org/mailman/options/python-dev/raulcumpl
> ido%40gmail.com
>
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13

2017-03-14 Thread Oleg Broytman
Hello.

   This mailing list is to work on developing Python (adding new
features to Python itself and fixing bugs); if you're having problems
learning, understanding or using Python, please find another forum.
Probably python-list/comp.lang.python mailing list/news group is the
best place; there are Python developers who participate in it; you may
get a faster, and probably more complete, answer there. See
http://www.python.org/community/ for other lists/news groups/fora. Thank
you for understanding.

On Tue, Mar 14, 2017 at 11:32:36AM -0300, jorge.conr...@cptec.inpe.br wrote:
> I dowloaded the Python 2.7.13 and install it as root . it installed in my
> directory:
> 
> /usr/src/Python-2.7.13
> 
> Then I typed:
> 
> python and I had:
> 
> Python 2.7.13 (default, Mar 14 2017, 09:30:46)
> [GCC 4.9.2 20150212 (Red Hat 4.9.2-6)] on linux2
> Type "help", "copyright", "credits" or "license" for more information.
> 
> Then I did:
> 
> import numpy
> Traceback (most recent call last):
>   File "", line 1, in 
> ImportError: No module named numpy
> 
> import scpy
> Traceback (most recent call last):
>   File "", line 1, in 
> ImportError: No module named scpy
> 
> import basemap
> Traceback (most recent call last):
>   File "", line 1, in 
> ImportError: No module named basemap
> 
> Please, what can I do to solve these.

   These modules are not in the standard library, you have to download
and install them separately. I recommend you to learn what is PyPI and
how to use `pip install`.

> Conrado

Oleg.
-- 
 Oleg Broytmanhttp://phdru.name/p...@phdru.name
   Programmers don't die, they just GOSUB without RETURN.
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] Python 2.7.13

2017-03-14 Thread jorge . conrado



Hi,

I dowloaded the Python 2.7.13 and install it as root . it installed in 
my directory:


/usr/src/Python-2.7.13

Then I typed:

python and I had:

Python 2.7.13 (default, Mar 14 2017, 09:30:46)
[GCC 4.9.2 20150212 (Red Hat 4.9.2-6)] on linux2
Type "help", "copyright", "credits" or "license" for more information.


Then I did:

import numpy
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named numpy


import scpy
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named scpy


import basemap
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named basemap


Please, what can I do to solve these.


Conrado
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] Python 2.7.13 unmodified will not build from source on Mac OS El Capitan (10.11)

2017-02-28 Thread Bryan Dunphy
I have Xcode installed and other large projects build just fine. I ran 
“./configure && make” in the “Python-2.7.13” directory and “make” generated two 
errors both referring to the same thing missing. The exact error messages are 
copied and pasted below.

dyld: lazy symbol binding failed: Symbol not found: _getentropy
  Referenced from: /Users/bryandunphy/Downloads/Python-2.7.13/./python.exe
  Expected in: /usr/lib/libSystem.B.dylib

dyld: Symbol not found: _getentropy
  Referenced from: /Users/bryandunphy/Downloads/Python-2.7.13/./python.exe
  Expected in: /usr/lib/libSystem.B.dylib

/bin/sh: line 1: 14105 Trace/BPT trap: 5   CC='gcc' LDSHARED='gcc -bundle 
-undefined dynamic_lookup -L/usr/local/lib' OPT='-DNDEBUG -g -fwrapv -O3 -Wall 
-Wstrict-prototypes' _TCLTK_INCLUDES='' _TCLTK_LIBS='' ./python.exe -E 
./setup.py $quiet build
make: *** [sharedmods] Error 133

That was the final output from make.

Any ideas on how to fix these errors and allow a build?
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-12-01 Thread Antoine Pitrou
On Wed, 30 Nov 2016 22:58:01 -0800
Benjamin Peterson  wrote:

> On Wed, Nov 30, 2016, at 10:19, Antoine Pitrou wrote:
> > On Tue, 29 Nov 2016 23:07:14 -0800
> > Benjamin Peterson  wrote:  
> > > Okay, now that we're heard from the other side, and I lacking a concrete
> > > reason to delay the release, I'm putting 2.7.13 back at the original
> > > dates.  
> > 
> > Serhiy may be thinking about https://bugs.python.org/issue28427  
> 
> But that isn't new, right?

Definitely not :-)
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-30 Thread Benjamin Peterson


On Wed, Nov 30, 2016, at 10:19, Antoine Pitrou wrote:
> On Tue, 29 Nov 2016 23:07:14 -0800
> Benjamin Peterson  wrote:
> > Okay, now that we're heard from the other side, and I lacking a concrete
> > reason to delay the release, I'm putting 2.7.13 back at the original
> > dates.
> 
> Serhiy may be thinking about https://bugs.python.org/issue28427

But that isn't new, right?
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-30 Thread Antoine Pitrou
On Tue, 29 Nov 2016 23:07:14 -0800
Benjamin Peterson  wrote:
> Okay, now that we're heard from the other side, and I lacking a concrete
> reason to delay the release, I'm putting 2.7.13 back at the original
> dates.

Serhiy may be thinking about https://bugs.python.org/issue28427

Regards

Antoine.


___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-29 Thread Benjamin Peterson
Okay, now that we're heard from the other side, and I lacking a concrete
reason to delay the release, I'm putting 2.7.13 back at the original
dates.

On Tue, Nov 29, 2016, at 06:34, Matthias Klose wrote:
> same here.
> https://wiki.debian.org/DebianStretch shows the final Debian release
> freeze for
> 2016-02-05, which would be a bit close for a 2.7.13 release.
> 
> On 29.11.2016 15:12, Steve Dower wrote:
> > I would much rather keep it in December, as I've already made scheduling 
> > decisions around the planned release date and there are fixes in 2.7.13 
> > that I was expecting to be available by the end of the year. One month is 
> > highly impactful for me.
> > 
> > Is this schedule change going to remove the month from 2.7.14? Or are we 
> > slipping all the rest of the releases (apart from the very last one at the 
> > end of 2019, presumably)? I too would like to know the intended use of the 
> > extra time.
> > 
> > Top-posted from my Windows Phone
> > 
> > -Original Message-
> > From: "Benjamin Peterson" 
> > Sent: ‎11/‎29/‎2016 0:04
> > To: "Raymond Hettinger" ; "Serhiy Storchaka" 
> > 
> > Cc: "Python-Dev@Python. Org" 
> > Subject: Re: [Python-Dev] Python 2.7.13 release dates
> > 
> > Okay, by popular demand, 2.7.13 now happens in January.
> > 
> > I'm curious what people are planning to do to 2.7 with the extra 5
> > weeks. The 2.7 branch is a place to put occasional conservative bug
> > fixes, which we aggregate and release every 6 months. It shouldn't
> > really need special attention or become less stable depending on the
> > release stage of Python 3.
> > 
> > On Mon, Nov 28, 2016, at 20:50, Raymond Hettinger wrote:
> >>
> >>> On Nov 28, 2016, at 10:36 AM, Serhiy Storchaka  
> >>> wrote:
> >>>
> >>> On 28.11.16 09:06, Benjamin Peterson wrote:
> >>>> I've have just updated PEP 373 to say that Python 2.7.13 release
> >>>> candidate 1 will be released on December 3. The final will follow two
> >>>> weeks later on December 17. If there are delays in the process, the
> >>>> final will likely to pushed into January.
> >>>
> >>> Could it be delayed until 3.6.0 released? I paused fixing non-critical 
> >>> and non-documentation bugs while 3.6 in pre-release stage and this could 
> >>> include bugs that affect 2.7.
> >>>
> >>> In additional, we always receive increased number of bug reports in the 
> >>> first one or two weeks after releasing new Python version. Some of these 
> >>> reports are about regressions introduced by bugfixes. If delay bugfix 
> >>> releases after new version release, we could fix regressions caused by 
> >>> backported bugfixes and make bugfix releases more reliable.
> >>
> >> +1 on delaying 2.7.13 for a bit.  As long as it doesn't muck up
> >> Benjamin's schedule, the extra time would be helpful (Python 3.6.0 got
> >> all the focus recently).
> >>
> >>
> >> Raymond
> >> ___
> >> Python-Dev mailing list
> >> Python-Dev@python.org
> >> https://mail.python.org/mailman/listinfo/python-dev
> >> Unsubscribe:
> >> https://mail.python.org/mailman/options/python-dev/benjamin%40python.org
> > ___
> > Python-Dev mailing list
> > Python-Dev@python.org
> > https://mail.python.org/mailman/listinfo/python-dev
> > Unsubscribe: 
> > https://mail.python.org/mailman/options/python-dev/steve.dower%40python.org
> > 
> > 
> > 
> > ___
> > Python-Dev mailing list
> > Python-Dev@python.org
> > https://mail.python.org/mailman/listinfo/python-dev
> > Unsubscribe: 
> > https://mail.python.org/mailman/options/python-dev/doko%40ubuntu.com
> > 
> 
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe:
> https://mail.python.org/mailman/options/python-dev/benjamin%40python.org
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-29 Thread Matthias Klose
same here.
https://wiki.debian.org/DebianStretch shows the final Debian release freeze for
2016-02-05, which would be a bit close for a 2.7.13 release.

On 29.11.2016 15:12, Steve Dower wrote:
> I would much rather keep it in December, as I've already made scheduling 
> decisions around the planned release date and there are fixes in 2.7.13 that 
> I was expecting to be available by the end of the year. One month is highly 
> impactful for me.
> 
> Is this schedule change going to remove the month from 2.7.14? Or are we 
> slipping all the rest of the releases (apart from the very last one at the 
> end of 2019, presumably)? I too would like to know the intended use of the 
> extra time.
> 
> Top-posted from my Windows Phone
> 
> -Original Message-
> From: "Benjamin Peterson" 
> Sent: ‎11/‎29/‎2016 0:04
> To: "Raymond Hettinger" ; "Serhiy Storchaka" 
> 
> Cc: "Python-Dev@Python. Org" 
> Subject: Re: [Python-Dev] Python 2.7.13 release dates
> 
> Okay, by popular demand, 2.7.13 now happens in January.
> 
> I'm curious what people are planning to do to 2.7 with the extra 5
> weeks. The 2.7 branch is a place to put occasional conservative bug
> fixes, which we aggregate and release every 6 months. It shouldn't
> really need special attention or become less stable depending on the
> release stage of Python 3.
> 
> On Mon, Nov 28, 2016, at 20:50, Raymond Hettinger wrote:
>>
>>> On Nov 28, 2016, at 10:36 AM, Serhiy Storchaka  wrote:
>>>
>>> On 28.11.16 09:06, Benjamin Peterson wrote:
>>>> I've have just updated PEP 373 to say that Python 2.7.13 release
>>>> candidate 1 will be released on December 3. The final will follow two
>>>> weeks later on December 17. If there are delays in the process, the
>>>> final will likely to pushed into January.
>>>
>>> Could it be delayed until 3.6.0 released? I paused fixing non-critical and 
>>> non-documentation bugs while 3.6 in pre-release stage and this could 
>>> include bugs that affect 2.7.
>>>
>>> In additional, we always receive increased number of bug reports in the 
>>> first one or two weeks after releasing new Python version. Some of these 
>>> reports are about regressions introduced by bugfixes. If delay bugfix 
>>> releases after new version release, we could fix regressions caused by 
>>> backported bugfixes and make bugfix releases more reliable.
>>
>> +1 on delaying 2.7.13 for a bit.  As long as it doesn't muck up
>> Benjamin's schedule, the extra time would be helpful (Python 3.6.0 got
>> all the focus recently).
>>
>>
>> Raymond
>> ___
>> Python-Dev mailing list
>> Python-Dev@python.org
>> https://mail.python.org/mailman/listinfo/python-dev
>> Unsubscribe:
>> https://mail.python.org/mailman/options/python-dev/benjamin%40python.org
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: 
> https://mail.python.org/mailman/options/python-dev/steve.dower%40python.org
> 
> 
> 
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: 
> https://mail.python.org/mailman/options/python-dev/doko%40ubuntu.com
> 

___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-29 Thread Matthias Klose
On 28.11.2016 20:38, Larry Hastings wrote:
> On 11/28/2016 10:42 AM, Guido van Rossum wrote:
>> Perhaps (un)related, is the release schedule for 3.5.3 set yet? (I'm holding
>> off putting a new version of typing.py on typeshed until that's out.)
> 
> Not set in stone, but I have a rough plan.  I want the dust to settle around 
> 3.6
> first.  So, have an RC1 in January, and then the final release two weeks 
> later. 
> I'm traveling the second week of January (#DSDad) so the RC would be either
> before or after that.

https://wiki.debian.org/DebianStretch shows the final Debian release freeze for
2016-02-05, which would be a bit close for a 3.5.3 release.  So anything with
some buffer to Feb 05 would be appreciated.

___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-29 Thread Steve Dower
I would much rather keep it in December, as I've already made scheduling 
decisions around the planned release date and there are fixes in 2.7.13 that I 
was expecting to be available by the end of the year. One month is highly 
impactful for me.

Is this schedule change going to remove the month from 2.7.14? Or are we 
slipping all the rest of the releases (apart from the very last one at the end 
of 2019, presumably)? I too would like to know the intended use of the extra 
time.

Top-posted from my Windows Phone

-Original Message-
From: "Benjamin Peterson" 
Sent: ‎11/‎29/‎2016 0:04
To: "Raymond Hettinger" ; "Serhiy Storchaka" 

Cc: "Python-Dev@Python. Org" 
Subject: Re: [Python-Dev] Python 2.7.13 release dates

Okay, by popular demand, 2.7.13 now happens in January.

I'm curious what people are planning to do to 2.7 with the extra 5
weeks. The 2.7 branch is a place to put occasional conservative bug
fixes, which we aggregate and release every 6 months. It shouldn't
really need special attention or become less stable depending on the
release stage of Python 3.

On Mon, Nov 28, 2016, at 20:50, Raymond Hettinger wrote:
> 
> > On Nov 28, 2016, at 10:36 AM, Serhiy Storchaka  wrote:
> > 
> > On 28.11.16 09:06, Benjamin Peterson wrote:
> >> I've have just updated PEP 373 to say that Python 2.7.13 release
> >> candidate 1 will be released on December 3. The final will follow two
> >> weeks later on December 17. If there are delays in the process, the
> >> final will likely to pushed into January.
> > 
> > Could it be delayed until 3.6.0 released? I paused fixing non-critical and 
> > non-documentation bugs while 3.6 in pre-release stage and this could 
> > include bugs that affect 2.7.
> > 
> > In additional, we always receive increased number of bug reports in the 
> > first one or two weeks after releasing new Python version. Some of these 
> > reports are about regressions introduced by bugfixes. If delay bugfix 
> > releases after new version release, we could fix regressions caused by 
> > backported bugfixes and make bugfix releases more reliable.
> 
> +1 on delaying 2.7.13 for a bit.  As long as it doesn't muck up
> Benjamin's schedule, the extra time would be helpful (Python 3.6.0 got
> all the focus recently).
> 
> 
> Raymond
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe:
> https://mail.python.org/mailman/options/python-dev/benjamin%40python.org
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/steve.dower%40python.org
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-29 Thread Benjamin Peterson
Okay, by popular demand, 2.7.13 now happens in January.

I'm curious what people are planning to do to 2.7 with the extra 5
weeks. The 2.7 branch is a place to put occasional conservative bug
fixes, which we aggregate and release every 6 months. It shouldn't
really need special attention or become less stable depending on the
release stage of Python 3.

On Mon, Nov 28, 2016, at 20:50, Raymond Hettinger wrote:
> 
> > On Nov 28, 2016, at 10:36 AM, Serhiy Storchaka  wrote:
> > 
> > On 28.11.16 09:06, Benjamin Peterson wrote:
> >> I've have just updated PEP 373 to say that Python 2.7.13 release
> >> candidate 1 will be released on December 3. The final will follow two
> >> weeks later on December 17. If there are delays in the process, the
> >> final will likely to pushed into January.
> > 
> > Could it be delayed until 3.6.0 released? I paused fixing non-critical and 
> > non-documentation bugs while 3.6 in pre-release stage and this could 
> > include bugs that affect 2.7.
> > 
> > In additional, we always receive increased number of bug reports in the 
> > first one or two weeks after releasing new Python version. Some of these 
> > reports are about regressions introduced by bugfixes. If delay bugfix 
> > releases after new version release, we could fix regressions caused by 
> > backported bugfixes and make bugfix releases more reliable.
> 
> +1 on delaying 2.7.13 for a bit.  As long as it doesn't muck up
> Benjamin's schedule, the extra time would be helpful (Python 3.6.0 got
> all the focus recently).
> 
> 
> Raymond
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe:
> https://mail.python.org/mailman/options/python-dev/benjamin%40python.org
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-28 Thread Raymond Hettinger

> On Nov 28, 2016, at 10:36 AM, Serhiy Storchaka  wrote:
> 
> On 28.11.16 09:06, Benjamin Peterson wrote:
>> I've have just updated PEP 373 to say that Python 2.7.13 release
>> candidate 1 will be released on December 3. The final will follow two
>> weeks later on December 17. If there are delays in the process, the
>> final will likely to pushed into January.
> 
> Could it be delayed until 3.6.0 released? I paused fixing non-critical and 
> non-documentation bugs while 3.6 in pre-release stage and this could include 
> bugs that affect 2.7.
> 
> In additional, we always receive increased number of bug reports in the first 
> one or two weeks after releasing new Python version. Some of these reports 
> are about regressions introduced by bugfixes. If delay bugfix releases after 
> new version release, we could fix regressions caused by backported bugfixes 
> and make bugfix releases more reliable.

+1 on delaying 2.7.13 for a bit.  As long as it doesn't muck up Benjamin's 
schedule, the extra time would be helpful (Python 3.6.0 got all the focus 
recently).


Raymond
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-28 Thread Larry Hastings

On 11/28/2016 10:42 AM, Guido van Rossum wrote:
Perhaps (un)related, is the release schedule for 3.5.3 set yet? (I'm 
holding off putting a new version of typing.py on typeshed until 
that's out.)


Not set in stone, but I have a rough plan.  I want the dust to settle 
around 3.6 first.  So, have an RC1 in January, and then the final 
release two weeks later.  I'm traveling the second week of January 
(#DSDad) so the RC would be either before or after that.



//arry/
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-28 Thread Guido van Rossum
Perhaps (un)related, is the release schedule for 3.5.3 set yet? (I'm
holding off putting a new version of typing.py on typeshed until that's
out.)

On Mon, Nov 28, 2016 at 10:36 AM, Serhiy Storchaka 
wrote:

> On 28.11.16 09:06, Benjamin Peterson wrote:
>
>> I've have just updated PEP 373 to say that Python 2.7.13 release
>> candidate 1 will be released on December 3. The final will follow two
>> weeks later on December 17. If there are delays in the process, the
>> final will likely to pushed into January.
>>
>
> Could it be delayed until 3.6.0 released? I paused fixing non-critical and
> non-documentation bugs while 3.6 in pre-release stage and this could
> include bugs that affect 2.7.
>
> In additional, we always receive increased number of bug reports in the
> first one or two weeks after releasing new Python version. Some of these
> reports are about regressions introduced by bugfixes. If delay bugfix
> releases after new version release, we could fix regressions caused by
> backported bugfixes and make bugfix releases more reliable.
>
>
>
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe: https://mail.python.org/mailman/options/python-dev/guido%
> 40python.org
>



-- 
--Guido van Rossum (python.org/~guido)
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Python 2.7.13 release dates

2016-11-28 Thread Serhiy Storchaka

On 28.11.16 09:06, Benjamin Peterson wrote:

I've have just updated PEP 373 to say that Python 2.7.13 release
candidate 1 will be released on December 3. The final will follow two
weeks later on December 17. If there are delays in the process, the
final will likely to pushed into January.


Could it be delayed until 3.6.0 released? I paused fixing non-critical 
and non-documentation bugs while 3.6 in pre-release stage and this could 
include bugs that affect 2.7.


In additional, we always receive increased number of bug reports in the 
first one or two weeks after releasing new Python version. Some of these 
reports are about regressions introduced by bugfixes. If delay bugfix 
releases after new version release, we could fix regressions caused by 
backported bugfixes and make bugfix releases more reliable.



___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] Python 2.7.13 release dates

2016-11-27 Thread Benjamin Peterson
I've have just updated PEP 373 to say that Python 2.7.13 release
candidate 1 will be released on December 3. The final will follow two
weeks later on December 17. If there are delays in the process, the
final will likely to pushed into January.

Servus,
Benjamin
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com