- 31 Agu, 2004 22 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Vinay Sajip yazdı
-
Anthony Baxter yazdı
"from blah import (foo, bar baz, bongo)"
-
Anthony Baxter yazdı
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
ldexp. Both methods are exact, and return the same results. Turns out multiplication is a few (but just a few) percent faster on my box. They're both significantly faster than using struct with a Q format to convert bytes to a 64-bit long (struct.unpack() appears to lose due to the tuple creation/teardown overhead), and calling _hexlify is significantly faster than doing bytes.encode('hex'). So we appear to have hit a local minimum (wrt speed) here.
-
Raymond Hettinger yazdı
components without division and without roundoff error for properly sized mantissas (i.e. on systems with 53 or more mantissa bits per float). Eliminates the previous implementation's rounding bias as aptly demonstrated by Tim Peters.
-
- 30 Agu, 2004 18 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
system, exploit cmd.exe's setlocal function in this directory.
-
Tim Peters yazdı
Replaced outcomes from native Tcl/Tk tests. Maybe the diffs are legit, maybe not. I noticed that the Tcl results I'm replacing here claimed both that there were no failures, and that one file had tests with failures, so I wasn't inclined to trust them <wink>.
-
Tim Peters yazdı
don't.
-
Tim Peters yazdı
error msgs.
-
Tim Peters yazdı
-
Tim Peters yazdı
in first column, no parens around return value).
-
Tim Peters yazdı
to unittest, so make it official: new module constants COMPARISON_FLAGS and REPORTING_FLAGS, which are bitmasks or'ing together the relevant individual option flags. set_unittest_reportflags(): Reworked to use REPORTING_FLAGS, and simplified overly complicated flag logic. class FakeModule: Removed this; neither documented nor used.
-
Johannes Gijsbers yazdı
-
Johannes Gijsbers yazdı
-
Johannes Gijsbers yazdı
-
Johannes Gijsbers yazdı
heuristics for filtering out imported names.
-
Johannes Gijsbers yazdı
-
Johannes Gijsbers yazdı
1) When a breakpoint is set via a function name: - the breakpoint gets the lineno of the def statement - a new funcname attribute is attached to the breakpoint 2) bdb.effective() calls new function checkfuncname() to handle: - def statement is executed: don't break. - a first executable line of a function with a breakpoint on the lineno of the def statement is reached: break. This fixes bugs 976878, 926369 and 875404. Thanks Ilya Sandler.
-
Andrew M. Kuchling yazdı
-
Johannes Gijsbers yazdı
-
Martin v. Löwis yazdı
-