- 30 May, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 23 May, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
"power" was formally ambiguous. Here's his fix.
-
- 21 May, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 16 May, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
for his service on the Python-Help maillist.
-
- 08 May, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 23 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 Nis, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Fixes #494762.
-
- 19 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 15 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 12 Nis, 2002 2 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Guido van Rossum yazdı
-
- 08 Nis, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 29 Mar, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 01 Mar, 2002 2 kayıt (commit)
-
-
Guido van Rossum yazdı
Due to the bizarre definition of _PyLong_Copy(), creating an instance of a subclass of long with a negative value could cause core dumps later on. Unfortunately it looks like the behavior of _PyLong_Copy() is quite intentional, so the fix is more work than feels comfortable. This fix is almost, but not quite, the code that Naofumi Honda added; in addition, I added a test case.
-
Guido van Rossum yazdı
Support GMP version >= 2. Bugfix candidate.
-
- 28 Şub, 2002 2 kayıt (commit)
-
-
Guido van Rossum yazdı
rexec. When using a restricted environment, imports of copy will fail with an AttributeError when trying to access types.CodeType. Bugfix candidate (all the way back to 1.5.3, but at least 2.1.3 and 2.2.1).
-
Tim Peters yazdı
A file-static "threads" dict mapped thread IDs to Windows handles, but was never referenced, and entries never got removed. This gets rid of the YAGNI-dict entirely. Bugfix candidate.
-
- 25 Şub, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 26 Ock, 2002 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
Fixes #505453.
-
Martin v. Löwis yazdı
-
- 18 Ock, 2002 1 kayıt (commit)
-
-
Thomas Heller yazdı
-
- 12 Ock, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 01 Ock, 2002 3 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 28 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Instead of sending the real user and host, use "anonymous@" (i.e. no host name at all!) as the default anonymous FTP password. This avoids privacy violations.
-
- 27 Ara, 2001 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 20 Ara, 2001 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 19 Ara, 2001 2 kayıt (commit)
-
-
Guido van Rossum yazdı
reported by Dan Parisien.
-
Tim Peters yazdı
binascii_b2a_base64(): We didn't allocate enough buffer space for very short inputs (e.g., a 1-byte input can produce a 5-byte output, but we only allocated 2 bytes). I expect that malloc overheads absorbed the overrun in practice, but computing a correct upper bound is a very simple change.
-
- 13 Ara, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 10 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 08 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
type.__module__ behavior. This adds the module name and a dot in front of the type name in every type object initializer, except for built-in types (and those that already had this). Note that it touches lots of Mac modules -- I have no way to test these but the changes look right. Apologies if they're not. This also touches the weakref docs, which contains a sample type object initializer. It also touches the mmap test output, because the mmap type's repr is included in that output. It touches object.h to put the correct description in a comment.
-
- 07 Ara, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Anthony Roach. Release the global interpreter lock around platform spawn calls. Bugfix candidate? Hard to say; I favor "yes, bugfix". These clearly *should* have been releasing the GIL all along, if for no other reason than compatibility with the similar os.system(). But it's possible some program out there is (a) multithreaded, (b) calling a spawn function with P_WAIT, and (c) relying on the spawn call to block all their threads until the spawned program completes. I think it's very unlikely anyone is doing that on purpose, but someone may be doing so by accident.
-
- 06 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 03 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 27 Kas, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
Bugfix candidate. tb_displayline(): the sprintf format was choking off the file name, but used plain %s for the function name (which can be arbitrarily long). Limit both to 500 chars max.
-
- 31 Eki, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-