- 04 Şub, 2002 2 kayıt (commit)
-
-
Just van Rossum yazdı
This fixes bug #511992.
-
Guido van Rossum yazdı
info: add info about Red Hat's python and python2.
-
- 02 Şub, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
the first 3 characters of this string in several places, so for as long as they remain "2.2" it confuses the heck out of attempts to build 2.3 stuff using distutils.
-
- 01 Şub, 2002 11 kayıt (commit)
-
-
Jack Jansen yazdı
there because of the NeXT history.
-
Andrew M. Kuchling yazdı
installations are present, by always unlinking the destination file before copying to it. Without the unlink(), the copied file remains owned by its previous UID, causing the subsequent chmod() to fail. Bugfix candidate, though it may cause changes on platforms where file ownership behaves differently.
-
Guido van Rossum yazdı
This uses os.popen3 (if it exists) to ensure that errors from a non-Python CGI script are logged. Bugfix candidate.
-
Jack Jansen yazdı
By default every module is imported in its own namespace, but this can be changed by defining USE_DYLD_GLOBAL_NAMESPACE. In a future version this define will be replaced by a runtime setting, but that needs a bit more thought. This code is largely based on code and feedback from Steven Majewski, Marcel Prastawa, Manoj Plakal and other on pythonmac-sig.
-
Jack Jansen yazdı
-
Guido van Rossum yazdı
Fix SF bug #511603: Error calling str on subclass of int Explicitly fill in tp_str with the same pointer as tp_repr.
-
Tim Peters yazdı
where their capabilities intersect. Would be nice if people using non- MSVC compilers (Borland etc) took a whack at doing something similar for them (this code relies on the MS _cwait function).
-
Thomas Heller yazdı
local conventions before being used by build_py. Fixes SF bug #509288, probably a candidate for 2.2.1
-
Steven M. Gava yazdı
-
Steven M. Gava yazdı
-
Tim Peters yazdı
-
- 31 Ock, 2002 3 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
contain the type of the file (regular file, socket, link, &c.). This means that install_scripts will now print "changing mode of <file> to 775" instead of "... to 100775". 2.2 bugfix candidate, I suppose, though this isn't actually fixing a bug.
-
Marc-André Lemburg yazdı
Closes patch #435381.
-
Skip Montanaro yazdı
-
- 30 Ock, 2002 9 kayıt (commit)
-
-
Fred Drake yazdı
argument incorrectly. This closes SF bug #505997.
-
Michael W. Hudson yazdı
2.2.1 candiate (he says, largely talking to himself :)
-
Michael W. Hudson yazdı
[ #510644 ] test_curses segfaults If we use the *object* *allocator*, we should use the *object* *deallocator*, not the *raw memory* deallocator (confused yet?). I think this was what caused segfaults when pymalloc was enabled. Even if it wasn't the cause, it's still wrong. 2.2.1 candidate.
-
Jack Jansen yazdı
-
Tim Peters yazdı
uses _DummyMutex on platforms without threads.
-
Tim Peters yazdı
TemproraryFileWrapper wrapper anymore, and should be immune from the problem that a temp file inherited by a spawned process caused an attempt to close the temp file in the spawning process to blow up (the unlink in TemporaryFileWrapper.close() blew up with a "Permission denied" error because, despite that the temp file got closed in the spawning process, the spawned process still had it open by virtue of C-level file descriptor inheritance). In context, that bug took days to figure out <wink/sigh>.
-
Tim Peters yazdı
-
Tim Peters yazdı
NOTE: this seems a mess wrt which symbols are available on which platforms. I can't fix it, but I didn't add to it <wink>, and included an XXX comment about names claimed to be available on Windows that aren't. If anyone can figure out the whole ugly truth, I'm sure a better organization will suggest itself.
-
Tim Peters yazdı
-
- 29 Ock, 2002 5 kayıt (commit)
-
-
Fred Drake yazdı
completely determined by the example; dict insertion order and the string hash algorithm no longer affect the output. This fixes SF bug #509281.
-
Martin v. Löwis yazdı
-
Steven M. Gava yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 28 Ock, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
This is an ancient race when multiple threads call gettempdir() (or anything relying on it) for the first time. Fixed x-platform via the Big Hammer of rearranging the code to serialize the first calls. Subsequent calls are as fast as before. Note that the Python test suite can't provoke this bug: it requires setting up multiple threads making the very first calls into tempfile, but the test suite uses tempfile several times before getting to test_threadedtempfile. Bugfix candidate.
-
- 27 Ock, 2002 4 kayıt (commit)
-
-
Jack Jansen yazdı
#509074.
-
Barry Warsaw yazdı
subpart.
-
Barry Warsaw yazdı
with only one subpart.
-
Barry Warsaw yazdı
that the first subpart added makes the payload a list object. Otherwise, a multipart/* with only one subpart will not have the proper structure.
-
- 26 Ock, 2002 4 kayıt (commit)
-
-
Martin v. Löwis yazdı
2.2.1 bugfix candidate.
-
Martin v. Löwis yazdı
Fixes #505453.
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
-