- 15 Oct, 2001 14 commits
-
-
Guido van Rossum authored
Py_TPFLAGS_DYNAMICTYPE bit. There is no longer a performance benefit, and I don't really see the use case any more.
-
Skip Montanaro authored
extern-able name.
-
Guido van Rossum authored
-
Guido van Rossum authored
on SF bug #467145.
-
Guido van Rossum authored
RFC 2049 recommends never outputting a line consisting of a single dot.
-
Guido van Rossum authored
assertion.
-
Guido van Rossum authored
-
Guido van Rossum authored
"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 authored
Check for pthread_sigmask before using it. Fixes remaining problem in #470781.
-
Guido van Rossum authored
Pass binary mode to makefile().
-
Fred Drake authored
zlib.adler32() are not suitable as general hash functions.
-
Martin v. Löwis authored
that -Kpthread is supported. Fixes #470781. Port to autoconf 2.52.
-
Barry Warsaw authored
has no Content-Type: header, it should be treated as text/plain.
-
Barry Warsaw authored
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 Oct, 2001 1 commit
-
-
Fred Drake authored
Prompted by Jim Ahlstrom. This closes SF patch #470614.
-
- 13 Oct, 2001 22 commits
-
-
Tim Peters authored
Ugly, but it works.
-
Guido van Rossum authored
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 authored
-
Fred Drake authored
reported by Neal Norwitz.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
Reported by Neal Norwitz.
-
Fred Drake authored
Reported by Neal Norwitz.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
for tigetstr.
-
Martin v. Löwis authored
gcc defines both.
-
Martin v. Löwis authored
-
Tim Peters authored
of calling external functions.
-
Fred Drake authored
debug mode (--with-pydebug).
-
Fred Drake authored
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 authored
-
Tim Peters authored
Rearranged the growing number of Lib packages into alphabetical order.
-
Tim Peters authored
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 authored
-
Tim Peters authored
This still doesn't compile on Windows, but at least I have a shot at fixing that now.
-
- 12 Oct, 2001 3 commits
-
-
Martin v. Löwis authored
use 0x format for id. Proposed by Cesar Eduardo Barros in patch #470680.
-
Guido van Rossum authored
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 authored
Still broken: GETTIMEOFDAY. This macro obviously isn't being defined on Windows, so there's logic errors here I'd rather Fred untangled.
-