- 15 Eki, 2001 7 kayıt (commit)
-
-
Guido van Rossum yazdı
"for <var> in <testlist> may no longer be a single test followed by a comma. This solves SF bug #431886. Note that if the testlist contains more than one test, a trailing comma is still allowed, for maximum backward compatibility; but this example is not: [(x, y) for x in range(10), for y in range(10)] ^ The fix involved creating a new nonterminal 'testlist_safe' whose definition doesn't allow the trailing comma if there's only one test: testlist_safe: test [(',' test)+ [',']]
-
Martin v. Löwis yazdı
Check for pthread_sigmask before using it. Fixes remaining problem in #470781.
-
Guido van Rossum yazdı
Pass binary mode to makefile().
-
Fred Drake yazdı
zlib.adler32() are not suitable as general hash functions.
-
Martin v. Löwis yazdı
that -Kpthread is supported. Fixes #470781. Port to autoconf 2.52.
-
Barry Warsaw yazdı
has no Content-Type: header, it should be treated as text/plain.
-
Barry Warsaw yazdı
failobj, and when getting the subtype use 'plain' as the failobj. text/plain is supposed to be the default if the message contains no Content-Type: header.
-
- 14 Eki, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
Prompted by Jim Ahlstrom. This closes SF patch #470614.
-
- 13 Eki, 2001 22 kayıt (commit)
-
-
Tim Peters yazdı
Ugly, but it works.
-
Guido van Rossum yazdı
using the same algorithm as the slot updates. The slotdefs array is now sorted by slot offset and has an interned string object corresponding to the name added to each item. More can be done but I need to commit this first as a working intermediate stage.
-
Fred Drake yazdı
-
Fred Drake yazdı
reported by Neal Norwitz.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
Reported by Neal Norwitz.
-
Fred Drake yazdı
Reported by Neal Norwitz.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
for tigetstr.
-
Martin v. Löwis yazdı
gcc defines both.
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
of calling external functions.
-
Fred Drake yazdı
debug mode (--with-pydebug).
-
Fred Drake yazdı
Remove the log file after we are done with it. This should clean up after the test even on Windows, since the file is now closed before we attempt removal.
-
Fred Drake yazdı
-
Tim Peters yazdı
Rearranged the growing number of Lib packages into alphabetical order.
-
Tim Peters yazdı
Simply commented it out, and then test_hotshot passes on Windows. Leaving to Fred to fix "the right way" (it seems to be a feature of unittest that all unittests try to unlink open files <wink>).
-
Tim Peters yazdı
-
Tim Peters yazdı
This still doesn't compile on Windows, but at least I have a shot at fixing that now.
-
- 12 Eki, 2001 10 kayıt (commit)
-
-
Martin v. Löwis yazdı
use 0x format for id. Proposed by Cesar Eduardo Barros in patch #470680.
-
Guido van Rossum yazdı
This patch changes to logic to: if env.var. set and non-empty: if env.var. is an integer: set flag to that integer if flag is zero: # [actually, <= 0 --GvR] set flag to 1 Under this patch, anyone currently using PYTHONVERBOSE=yes will get the same output as before. PYTHONVERBNOSE=2 will generate more verbosity than before. The only unusual case that the following three are still all equivalent: PYTHONVERBOSE=yespleas PYTHONVERBOSE=1 PYTHONVERBOSE=0
-
Tim Peters yazdı
Still broken: GETTIMEOFDAY. This macro obviously isn't being defined on Windows, so there's logic errors here I'd rather Fred untangled.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
This patch updates Python/thread_pthread.h to mask all signals for any thread created. This will keep all signals masked for any thread that isn't the initial thread. For Solaris and Linux, the two platforms I was able to test it on, it solves bug #465673 (pthreads need signal protection) and probably will solve bug #219772 (Interactive InterPreter+ Thread -> core dump at exit). I'd be great if this could get some testing on other platforms, especially HP-UX pre 11.00 and post 11.00, as I had to make some guesses for the DCE thread case. AIX is also a concern as I saw some mention of using sigthreadmask() as a pthread_sigmask() equivalent, but this patch doesn't use sigthreadmask(). I don't have access to AIX.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
tool; look for that on Monday.
-
Fred Drake yazdı
reported and can read the log back in.
-
Guido van Rossum yazdı
up GCC warnings.
-