[Python logo]
Python commits

RevisionAuthorDateDescription
68344marc-andre.lemburg05 Jan 2009 14:43:35

Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration
into the extern "C" section.

Add a few more comments and apply some minor edits to make the file contents
fit the original structure again.

68338neal.norwitz04 Jan 2009 22:57:25

Make sure to checkout any new packages

68326georg.brandl04 Jan 2009 17:03:10

Update make.bat.

68325benjamin.peterson04 Jan 2009 17:00:18

use Jinja 2.1.1

68319antoine.pitrou04 Jan 2009 16:29:23

Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream.

68318mark.dickinson04 Jan 2009 16:25:40

Misc/NEWS entry for r68317

68317mark.dickinson04 Jan 2009 16:22:02

More Python 2.3 compatibility fixes for decimal.py.

68314mark.dickinson04 Jan 2009 16:10:56

Fix Decimal.from_float to use valid Python 2.3 syntax, as per
comments at top of decimal.py. (But note that the from_float
method itself with still not be usable before Python 2.7.)
See issue 4796 for discussion.

68312mark.dickinson04 Jan 2009 15:19:41

It's wrong to use AC_REPLACE_FUNCS for hypot, since there's no longer any
Python/hypot.c replacement file. Use AC_CHECK_FUNCS instead. This change
should be backported to 2.6 and 3.0.

68311mark.dickinson04 Jan 2009 14:53:00

Use C99 'isfinite' macro in preference to BSD-derived 'finite' function.

68304mark.dickinson04 Jan 2009 12:02:05

Fix HAVE_DECL_ISINF/ISNAN test (again).

68302mark.dickinson04 Jan 2009 11:06:40

Oops. Need to check not only that HAVE_DECL_ISINF is defined, but also
that it's equal to 1. (If isinf isn't defined, HAVE_DECL_ISINF is
defined to be 0, rather than being undefined.)

68299mark.dickinson04 Jan 2009 08:57:26

isinf and isnan are macros, not functions; fix configure script
to use AC_CHECK_DECLS instead of AC_CHECK_FUNCS for these.
(See discussion in issue #4506)