[Python-checkins] r71709 - in python/branches/release30-maint: Python/pymath.c

mark.dickinson python-checkins at python.org
Sat Apr 18 16:21:40 CEST 2009


Author: mark.dickinson
Date: Sat Apr 18 16:21:40 2009
New Revision: 71709

Log:
Merged revisions 71706 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r71706 | mark.dickinson | 2009-04-18 15:14:48 +0100 (Sat, 18 Apr 2009) | 9 lines
  
  Merged revisions 71705 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/python/trunk
  
  ........
    r71705 | mark.dickinson | 2009-04-18 15:13:43 +0100 (Sat, 18 Apr 2009) | 2 lines
    
    copysign shouldn't be declared as static in pymath.c
  ........
................


Modified:
   python/branches/release30-maint/   (props changed)
   python/branches/release30-maint/Python/pymath.c

Modified: python/branches/release30-maint/Python/pymath.c
==============================================================================
--- python/branches/release30-maint/Python/pymath.c	(original)
+++ python/branches/release30-maint/Python/pymath.c	Sat Apr 18 16:21:40 2009
@@ -22,7 +22,7 @@
 #endif /* HAVE_HYPOT */
 
 #ifndef HAVE_COPYSIGN
-static double
+double
 copysign(double x, double y)
 {
 	/* use atan2 to distinguish -0. from 0. */


More information about the Python-checkins mailing list