Merged revisions 81967 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81967 | mark.dickinson | 2010-06-13 11:50:29 +0100 (Sun, 13 Jun 2010) | 4 lines

  Issue #8986: erfc was raising OverflowError on Linux for arguments in
  the (approximate) range (-27.3, 30.0), as a result of an escaped errno
  value.
........
This commit is contained in:
Mark Dickinson 2010-06-13 10:52:38 +00:00
parent c6f1396be0
commit bcdf9da265
5 changed files with 67 additions and 6 deletions

View file

@ -153,6 +153,7 @@ Benjamin Collar
Jeffery Collins
Robert Collins
Paul Colomiets
Geremy Condra
Juan José Conti
Matt Conway
David M. Cooke

View file

@ -428,6 +428,9 @@ C-API
Library
-------
- Issue #8986: math.erfc was incorrectly raising OverflowError for
values between -27.3 and -30.0 on some platforms.
- Issue #8784: Set tarfile default encoding to 'utf-8' on Windows.
- Issue #8966: If a ctypes structure field is an array of c_char, convert its