Re: [Python-Dev] Reminder: Python 3.5 beta 1 will be tagged tomorrow

2015-05-22 Thread Chris Barker
Is it too late to get the isclose() code (PEP 485) into 3.5?

I posted the code here, and got a tiny bit of review, but have not yet
merged it into the source tree -- and don't know the process for getting it
committed to the official source.

So -- too late, or should I try to get that merge done soon -- if so, how?

-Chris



On Fri, May 22, 2015 at 12:53 PM, Larry Hastings la...@hastings.org wrote:



 Howdy howdy.  It's-a me, Larry, your friendly neighborhood Python 3.5
 Release Manager.

 Somewhere around 2 or 3pm tomorrow I expect to tag Python 3.5 beta 1.
 We'll actually release beta 1 on Sunday, once the binary installers are all
 built.

 Beta 1 is also feature-freeze, meaning no new features may be added to 3.5
 without my permission.  Since it seems useful to have a specific cutoff
 time, please stop adding features at ** 8pm Saturday UTC **.  (That's 1pm
 Pacific Daylight Time.  It's also almost exactly 24 hours from... now.)

 I remind you that this time we're trying something new: we're going to
 create the 3.5 branch when we release beta 1, allowing feature development
 (for 3.6) to continue in trunk.  At the point that I check in and push beta
 1, I'll also merge all checkins from trunk back into the 3.5 branch.  After
 that it'll be responsibility of the person checking in to check their bug
 fixes in to the appropriate place.  So please keep in mind: once the 3.5
 branch becomes generally available on Sunday, the usual rules for a release
 branch will apply: bug fixes for 3.5 should be checked in to the 3.5 branch
 and get merged forward into trunk.

 If you have new features you want to ship with Python 3.5, please check
 them in as soon as possible!


 Thank you for helping to make Python better,


 */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/chris.barker%40noaa.gov




-- 

Christopher Barker, Ph.D.
Oceanographer

Emergency Response Division
NOAA/NOS/ORR(206) 526-6959   voice
7600 Sand Point Way NE   (206) 526-6329   fax
Seattle, WA  98115   (206) 526-6317   main reception

chris.bar...@noaa.gov
___
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] Reminder: Python 3.5 beta 1 will be tagged tomorrow

2015-05-22 Thread Larry Hastings

On 05/22/2015 02:29 PM, Chris Barker wrote:

Is it too late to get the isclose() code (PEP 485) into 3.5?

I posted the code here, and got a tiny bit of review, but have not yet 
merged it into the source tree -- and don't know the process for 
getting it committed to the official source.


So -- too late, or should I try to get that merge done soon -- if so, how?


Posting your plea here is a good start.  Hopefully you can find a core 
dev familiar enough with the issues involved that they can (quickly!) 
guide it through the process of getting it checked in.


Given that this is a new feature I can live with it being checked in at 
the last minute, as it shouldn't destabilize the build.  Still, I would 
prefer that it was checked in far enough in advance that you can watch 
the buildbots ( 
http://buildbot.python.org/all/waterfall?category=3.x.stable ) and maybe 
even iterate if the checkin causes problems.



//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] Reminder: Python 3.5 beta 1 will be tagged tomorrow

2015-05-22 Thread Chris Barker
On Fri, May 22, 2015 at 2:33 PM, Larry Hastings la...@hastings.org wrote:

  On 05/22/2015 02:29 PM, Chris Barker wrote:

 Is it too late to get the isclose() code (PEP 485) into 3.5?

 ...

   Hopefully you can find a core dev familiar enough with the issues
 involved that they can (quickly!) guide it through the process of getting
 it checked in.

 Ping!  Anyone willing to sponsor this?

Sorry I waited 'till this late in the game.

-Chris


-- 

Christopher Barker, Ph.D.
Oceanographer

Emergency Response Division
NOAA/NOS/ORR(206) 526-6959   voice
7600 Sand Point Way NE   (206) 526-6329   fax
Seattle, WA  98115   (206) 526-6317   main reception

chris.bar...@noaa.gov
___
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] Reminder: Python 3.5 beta 1 will be tagged tomorrow

2015-05-22 Thread Berker Peksağ
On Sat, May 23, 2015 at 12:53 AM, Chris Barker chris.bar...@noaa.gov wrote:
 On Fri, May 22, 2015 at 2:33 PM, Larry Hastings la...@hastings.org wrote:

 On 05/22/2015 02:29 PM, Chris Barker wrote:

 Is it too late to get the isclose() code (PEP 485) into 3.5?

 ...

   Hopefully you can find a core dev familiar enough with the issues
 involved that they can (quickly!) guide it through the process of getting it
 checked in.

 Ping!  Anyone willing to sponsor this?

Hi Chris,

Thanks for the PEP and the implementation!

You'll get more attention If you open an issue with a patch at
bugs.python.org. Having a GitHub repository is good, but the isclose()
code(with tests and documentation) needs to be integrated into the
CPython code base:

* The C implementation should be in Modules/mathmodule.c
* Tests should be in Lib/test/test_math.py
* Documentation should be in Doc/library/math.rst
* Add an entry to Doc/whatsnew/3.5.rst
* If I remember correctly, we don't need the Python implementation and its tests

--Berker
___
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] Reminder: Python 3.5 beta 1 will be tagged tomorrow

2015-05-22 Thread Larry Hastings



Howdy howdy.  It's-a me, Larry, your friendly neighborhood Python 3.5 
Release Manager.


Somewhere around 2 or 3pm tomorrow I expect to tag Python 3.5 beta 1.  
We'll actually release beta 1 on Sunday, once the binary installers are 
all built.


Beta 1 is also feature-freeze, meaning no new features may be added to 
3.5 without my permission.  Since it seems useful to have a specific 
cutoff time, please stop adding features at ** 8pm Saturday UTC **.  
(That's 1pm Pacific Daylight Time.  It's also almost exactly 24 hours 
from... now.)


I remind you that this time we're trying something new: we're going to 
create the 3.5 branch when we release beta 1, allowing feature 
development (for 3.6) to continue in trunk.  At the point that I check 
in and push beta 1, I'll also merge all checkins from trunk back into 
the 3.5 branch.  After that it'll be responsibility of the person 
checking in to check their bug fixes in to the appropriate place.  So 
please keep in mind: once the 3.5 branch becomes generally available on 
Sunday, the usual rules for a release branch will apply: bug fixes for 
3.5 should be checked in to the 3.5 branch and get merged forward into 
trunk.


If you have new features you want to ship with Python 3.5, please check 
them in as soon as possible!



Thank you for helping to make Python better,


//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