A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2009-October/092771.html below:

[Python-Dev] Python 2.6.4rc1

[Python-Dev] Python 2.6.4rc1 [Python-Dev] Python 2.6.4rc1Zvezdan Petkovic zvezdan at zope.com
Thu Oct 8 14:45:54 CEST 2009
On Oct 7, 2009, at 2:09 PM, Barry Warsaw wrote:
> I want us to be very careful about 2.6.4.  This isn't a normal bug  
> fix release, it's specifically there to remove the brown paper bag  
> of 2.6.3 from our heads.  So let's be conservative and fix this one  
> in 2.6.5.

Can we get the readline patch reviewed as well.  It was applied to  
trunk already: http://svn.python.org/view?view=rev&revision=74970

It's marked for backport to 2.6 as "needs review":
http://bugs.python.org/issue6877

It fixes a BusError crash that was just swiped under a rug by  
disabling the build in setup.py.  :-)

FWIW, the part of the patch that changes setup.py will be useful for  
another comparison of Mac OS X release numbers.  The line 1362 on the  
trunk (1364 on the 2.6 branch) compares strings and, unfortunately,   
'10.' < '8.' for Darwin 10 (Mac OS X 10.6 Snow Leopard):

	if os.uname()[2] > '8.':

So, it should be changed to:

	if os_release > 8:

where ``os_release`` is introduced by the patch mentioned above as:

	os_release = int(os.uname()[2].split('.')[0])

on the line 550 on the trunk.

Regards,

	Zvezdan

More information about the Python-Dev mailing list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4