- 24 Tem, 2006 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 23 Tem, 2006 15 kayıt (commit)
-
-
Greg Ward yazdı
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
will backport.
-
Andrew MacIntyre yazdı
-
Ronald Oussoren yazdı
This patch replaces the menubar that is used by AquaTk for windows without a menubar of their own by one that is more appropriate for IDLE.
-
Ronald Oussoren yazdı
part of bug #1517990.
-
Neal Norwitz yazdı
it definitely could use some review to ensure I'm not off by one and there's no possible overflow/wrap-around of bytes_left. Reported by Klocwork #1. Fix a problem if there is a failure allocating self->db. Found with failmalloc.
-
Neal Norwitz yazdı
Ensure that dataobj is never NULL. Reported by Klocwork #102
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
Also fix a few memory leaks in other failure scenarios. It seems that if b_objects == Py_None, we will have an extra ref to b_objects. Add XXX comment so hopefully someone documents why the else isn't necessary or adds it in. Reported by Klocwork #20
-
Neal Norwitz yazdı
Reported by Klocwork #106
-
Neal Norwitz yazdı
to stackdepth_walk it will be dereffed. Not sure if I found with failmalloc or Klockwork #55.
-
Neal Norwitz yazdı
-
Kurt B. Kaiser yazdı
-
Greg Ward yazdı
that a 2.93 sec audio file will always take 3.1 sec (as it did on the hardware I had when I first wrote the test), expect that it will take 2.93 sec +/- 10%, and only fail if it's outside of that range. Compute the expected
-
- 22 Tem, 2006 2 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 21 Tem, 2006 8 kayıt (commit)
-
-
Brett Cannon yazdı
-
Georg Brandl yazdı
-
Barry Warsaw yazdı
points out there are really two types of continued headers defined in this RFC (i.e. "encoded" parameters with the form "name*0*=" and unencoded parameters with the form "name*0="), but we were were handling them both the same way and that isn't correct. This patch should be much more RFC compliant in that only encoded params are %-decoded and the charset/language information is only extract if there are any encoded params in the segments. If there are no encoded params then the RFC says that there will be no charset/language parts. Note however that this will change the return value for Message.get_param() in some cases. For example, whereas before if you had all unencoded param continuations you would have still gotten a 3-tuple back from this method (with charset and language == None), you will now get just a string. I don't believe this is a backward incompatible change though because the documentation for this method already indicates that either return value is possible and that you must do an isinstance(val, tuple) check to discriminate between the two. (Yeah that API kind of sucks but we can't change /that/ without breaking code.) Test cases, some documentation updates, and a NEWS item accompany this patch.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
Many (all?) of these could be backported.
-
Neal Norwitz yazdı
that if we call Py_DECREF(frame) like we do if allocating locals fails, frame_dealloc() will try to use these bogus values and crash.
-
Neal Norwitz yazdı
-
- 20 Tem, 2006 6 kayıt (commit)
-
-
Vinay Sajip yazdı
Addressed SF#1524081 by using a dictionary to map level names to syslog priority names, rather than a string.lower().
-
Kurt B. Kaiser yazdı
Patch 1407280 Tal Einat M ParenMatch.py M NEWS.txt M CREDITS.txt
-
Fred Drake yazdı
-
Vinay Sajip yazdı
Updated documentation for TimedRotatingFileHandler relating to how rollover files are named. The previous documentation was wrongly the same as for RotatingFileHandler.
-
Georg Brandl yazdı
-
Phillip J. Eby yazdı
(There was a problem with empty filenames still causing recursion)
-
- 19 Tem, 2006 3 kayıt (commit)
-
-
Martin v. Löwis yazdı
r50697: Comments and docs cleanups, and some little fixes per recommendation from Raymond Hettinger.
-
Thomas Heller yazdı
not defined on Windows, even if that configuration is probably not supported at all.
-
Tim Peters yazdı
Moved the code for _PyThread_CurrentFrames() up, so it's no longer in a huge "#ifdef WITH_THREAD" block (I didn't realize it /was/ in one). Changed test_sys's test_current_frames() so it passes with or without thread supported compiled in. Note that test_sys fails when Python is compiled without threads, but for an unrelated reason (the old test_exit() fails with an indirect ImportError on the `thread` module). There are also other unrelated compilation failures without threads, in extension modules (like ctypes); at least the core compiles again. Do we really support --without-threads? If so, there are several problems remaining.
-
- 18 Tem, 2006 4 kayıt (commit)
-
-
Tim Peters yazdı
-
Martin v. Löwis yazdı
-
Facundo Batista yazdı
-
Brett Cannon yazdı
of values in the time tuple passed in. Unfortunately people came to rely on undocumented behaviour of setting unneeded values to 0, regardless of if it was within the valid range. Now those values force the value internally to the minimum value when 0 is passed in.
-