- 14 Aug, 2002 6 commits
-
-
Skip Montanaro authored
see bug 411881
-
Neal Norwitz authored
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Tim Peters authored
do bizarre things to get a temp file, I changed it to use mkstemp instead of NamedTemporaryFile. This tried to leave the file open while passing its name to execfile(). On Win2K (but not Win9X), though, a file created with O_TEMPORARY cannot be opened again, so the test failed with a permission error when execfile tried to open it. Closer to the truth: a file created with O_TEMPORARY can be opened again, but only if the file is also created with SHARE_DELETE access via the Win32 CreateFile() function. There's no way to get at that from MS's version of libc, though (we'd have to ditch the "std" C file functions in favor of Win32 API calls).
-
Tim Peters authored
was reversed).
-
- 13 Aug, 2002 23 commits
-
-
Tim Peters authored
Boolean, so changed its default value from 1 to True.
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Tim Peters authored
runtime.
-
Jeremy Hylton authored
-
Tim Peters authored
-
Tim Peters authored
space is no longer needed, so removed the code. It was only possible when a degenerate (ah->ob_size == 0) split happened, but after that fix went in I added k_lopsided_mul(), which saves the body of k_mul() from seeing a degenerate split. So this removes code, and adds a honking long comment block explaining why spilling out of bounds isn't possible anymore. Note: ff we end up spilling out of bounds anyway <wink>, an assert in v_iadd() is certain to trigger.
-
Barry Warsaw authored
1.1.4. Redhat hasn't upgraded but does provide a patched 1.1.3 package, so checking for 1.1.4 just makes life difficult.
-
Neal Norwitz authored
-
Guido van Rossum authored
Add some more rigor to slotmultipleinheritance().
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
Fix already checked in by Guido
-
Fred Drake authored
-
Jason Tishler authored
Close the bug report again -- this time for Cygwin due to a newlib bug. See the following for the details: http://sources.redhat.com/ml/newlib/2002/msg00369.html Note that this commit is only a documentation (i.e., comment) change.
-
Guido van Rossum authored
(rev. 2.86). The other type is only disqualified from sq_repeat when it has the CHECKTYPES flag. This means that for extension types that only support "old-style" numeric ops, such as Zope 2's ExtensionClass, sq_repeat still trumps nb_multiply.
-
Tim Peters authored
"lopsided Karatsuba" driver also gets some exercise.
-
Tim Peters authored
test was written. So boosted the number of "digits" this generates, and also beefed up the "* / divmod" test to tickle numbers big enough to trigger the Karatsuba algorithm. It takes about 2 seconds now on my box.
-
Guido van Rossum authored
is an *unsigned* long.
-
- 12 Aug, 2002 11 commits
-
-
Guido van Rossum authored
-
Tim Peters authored
-
Fred Drake authored
updated when checkins are made, but I can get that updated when needed.
-
Tim Peters authored
k_mul() when inputs have vastly different sizes, and a little more efficient when they're close to a factor of 2 out of whack. I consider this done now, although I'll set up some more correctness tests to run overnight.
-
Guido van Rossum authored
-
Guido van Rossum authored
that file itself (because it's the parser that reports them).
-
Guido van Rossum authored
correct filename and line number are reported.
-
Jack Jansen authored
-
Guido van Rossum authored
-
Guido van Rossum authored
alive in the memo. This fixes SF bug 592567.
-
Tim Peters authored
multiply via Ctrl+C could cause a NULL-pointer dereference due to the assert.
-