- 24 May, 2003 1 kayıt (commit)
-
-
Tim Peters yazdı
float_pow(): Don't let the platform pow() raise -1.0 to an integer power anymore; at least glibc gets it wrong in some cases. Note that math.pow() will continue to deliver wrong (but platform-native) results in such cases.
-
- 01 May, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
-
- 03 Şub, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
-
- 07 Ara, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Added related testcase. Closes SF bug #643260.
-
- 23 Tem, 2002 1 kayıt (commit)
-
-
Barry Warsaw yazdı
imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
-
- 01 Nis, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 04 Eyl, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 03 Eyl, 2001 2 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
integer types, and y must be >= 0. See discussion at http://sf.net/tracker/index.php?func=detail&aid=457066&group_id=5470&atid=105470
-
- 30 Agu, 2001 2 kayıt (commit)
-
-
Fred Drake yazdı
based on a suggestion from Tim Peters; also make sure that we're really doing exponentiation and not multiplication.
-
Fred Drake yazdı
bug from compile.c. (SF bug #456756.)
-
- 12 Tem, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
an exception.
-
- 12 Ara, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
-
- 23 Eki, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 06 Eki, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
raise ValueError. Checked in the patch as far as it went, but also changed all of ints, longs and floats to raise ZeroDivisionError instead when raising 0 to a negative number. This is what 754-inspired stds require, as the "true result" is an infinity obtained from finite operands, i.e. it's a singularity. Also changed float pow to not be so timid about using its square-and-multiply algorithm. Note that what math.pow does is unrelated to what builtin pow does, and will still vary by platform.
-
- 23 Ara, 1999 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 24 Kas, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
pow(x,y,z) to pow(x,y)%z.
-
- 12 Agu, 1994 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-