- 21 Mar, 2002 2 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Also, this checkin should make the file MacBinary again.
-
- 20 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 19 Mar, 2002 6 kayıt (commit)
-
-
Fred Drake yazdı
for (reported by Keith Briggs). Wrap some very long lines.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
This was stated before, but a minor grammatical error made it difficult to be sure of the meaning. This closes SF bug #530143.
-
Tim Peters yazdı
-
- 18 Mar, 2002 16 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
exists.
-
cvs2svn yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Jack Jansen yazdı
Lurking bug found by patch for 531291: FSSpecs should be passed to Py_BuildValue by address, not by value.
-
Jack Jansen yazdı
Some of the newer routines return an OSErr, like most toolbox calls, in stead of depending on ResError(). Second half of fix for #531291.
-
Michael W. Hudson yazdı
Lots of tests fail in non-unicode builds, but I think most of these are "bugs" in the tests. I hope so, anyway.
-
Michael W. Hudson yazdı
revision 1.2 of ERRNO.py revision 1.2 of FILE.py revision 1.2 of IN.py Regenerated for Irix 6.5.
-
Michael W. Hudson yazdı
revision 1.3 of regen Patch by Michael Pruett: make regen work on Irix 6.0 and 6.5.
-
Michael W. Hudson yazdı
[ 516299 ] urlparse can get fragments wrong
-
Michael W. Hudson yazdı
[ 530285 ] redefining SRE_CODE in Modules/sre.h Another one for the trunk, later.
-
Michael W. Hudson yazdı
[ 529104 ] broken error handling in unicode-escape
-
Michael W. Hudson yazdı
[ 529104 ] broken error handling in unicode-escape I presume this will need to be fixed on the trunk, too. Later.
-
Michael W. Hudson yazdı
[ 531306 ] ucs4 build horked. Classic C mistake, I think. Also squashed a couple of warnings in the ucs4 build.
-
Jack Jansen yazdı
-
Guido van Rossum yazdı
The proper fix is not quite what was submitted; it's really better to take the class of the object passed rather than calling PyMethod_New with NULL pointer args, because that can then cause other core dumps later. I also added a testcase for the fix to classmethods() in test_descr.py. I'll apply this to 2.3 too.
-
- 17 Mar, 2002 14 kayıt (commit)
-
-
Michael W. Hudson yazdı
Please comment! You can find logs at http://starship.python.net/crew/mwh/cvslog3.txt on the assumption that you don't want to fight cvs yourself. In particular, I need a better explanation of the bugs that have been fixed in the email package.
-
Michael W. Hudson yazdı
on MacOSX/Darwin, use ranlib when building static libs. I hope this belongs on the branch...
-
Michael W. Hudson yazdı
Remove mentioning of -U option in "python -h" output.
-
Michael W. Hudson yazdı
Quick build: clarify that you have to do "make install" as root; OS info: add info about Red Hat's python and python2.
-
Michael W. Hudson yazdı
Remove stub for unicode.txt. Resort README in dictionary order.
-
Michael W. Hudson yazdı
Fix typo
-
Michael W. Hudson yazdı
update text to refer to ServerProxy class in preference to Server, which is only retained for backward compatibility with older versions of the library.
-
Michael W. Hudson yazdı
Fix for [ #504284 ] Last build problems on AIX I'm ignoring the suggestion that this should be an autoconf test in the interests of having a fix today. Feel free to quibble.
-
Michael W. Hudson yazdı
-
Tim Peters yazdı
Change the way __doc__ is handled, to avoid blowing up on non-string __doc__ values.
-
Michael W. Hudson yazdı
This test left a new set of 3 junk files behind each time it was run.
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
Bring tempfile.py up to date from the trunk. There have been three checkins (all by Tim): SF bug #509805 tempfile.gettempdir not threadsafe 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. [and] New TemporaryFile implementation for Windows: this doesn't need a 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>. [and] Thanks to Detlef Lannert for pointing out a typo in the code that uses _DummyMutex on platforms without threads. The first and third of these are pretty clearly bugfixes; I think the second is too.
-
Michael W. Hudson yazdı
-
- 16 Mar, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
-