- 15 Eyl, 2006 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
(backport)
-
- 14 Eyl, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 12 Eyl, 2006 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Anthony Baxter yazdı
-
- 11 Eyl, 2006 8 kayıt (commit)
-
-
Anthony Baxter yazdı
-
Anthony Baxter yazdı
-
Neal Norwitz yazdı
_PyGILState_NoteThreadState was declared as static inconsistently. Make it static as it's not necessary outside of this module. Some tests failed because errno was reset to 0. (I think the tests that failed were at least: test_fcntl and test_mailbox). Ensure that errno doesn't change after a call to Py_END_ALLOW_THREADS. This only affected debug builds. This needs to be ported to HEAD. I'll try to remember to do that tomorrow. (Anyone, feel free to port it.)
-
Neal Norwitz yazdı
Klocwork #364. Will port to head.
-
Neal Norwitz yazdı
an infinite loop in rev 47154. This patch also adds a test to prevent the regression. Will backport to 2.4 and head later.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
The cast function did not accept c_char_p or c_wchar_p instances as first argument, and failed with a 'bad argument to internal function' error message.
-
Neal Norwitz yazdı
Anonymous structure fields that have a bit-width specified did not work, and they gave a strange error message from PyArg_ParseTuple: function takes exactly 2 arguments (3 given).
-
- 09 Eyl, 2006 1 kayıt (commit)
-
-
Brett Cannon yazdı
Fixes bug #1551432.
-
- 08 Eyl, 2006 5 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Nick Coghlan yazdı
-
Georg Brandl yazdı
fix setobject.c refcounts and error checks.
-
- 07 Eyl, 2006 2 kayıt (commit)
-
-
Hye-Shik Chang yazdı
Fixed a few bugs on cjkcodecs: - gbk and gb18030 codec now handle U+30FB KATAKANA MIDDLE DOT correctly. - iso2022_jp_2 codec now encodes into G0 for KS X 1001, GB2312 codepoints to conform the standard. - iso2022_jp_3 and iso2022_jp_2004 codec can encode JIS X 0213:2 codepoints now.
-
Ronald Oussoren yazdı
-
- 06 Eyl, 2006 10 kayıt (commit)
-
-
Gustavo Niemeyer yazdı
place of sys.stdout while running tests. Removing one more test to make buildbot happy.
-
Gustavo Niemeyer yazdı
Let's try that once more. Buildbots were broken last time, but probably because tests were sending data to stderr for testing it (sending to a file doesn't touch the problem). The fix is still the same, but tests were reduced (removing tests to be able to fix something is weird, but oh well).
-
Marc-André Lemburg yazdı
-
Georg Brandl yazdı
(backport from rev. 51785)
-
Thomas Heller yazdı
Add asserts to check for 'impossible' NULL values, with comments. In one place where I'm not 1000% sure about the non-NULL, raise a RuntimeError for safety. This should fix the klocwork issues that Neal sent me. If so, it should be applied to the release25-maint branch also.
-
Georg Brandl yazdı
Also make sure that every exception class has __module__ set to 'exceptions'. (backport)
-
Georg Brandl yazdı
imports (if not in package and if beyond toplevel package). (backport from rev. 51765)
-
Georg Brandl yazdı
of os.urandom(). (backport from rev. 51762)
-
Neal Norwitz yazdı
-
Gustavo Niemeyer yazdı
making subprocess not close standard file descriptors.
-
- 05 Eyl, 2006 9 kayıt (commit)
-
-
Sean Reifscheider yazdı
-
Andrew M. Kuchling yazdı
-
Georg Brandl yazdı
to use "in". (backport from rev. 51740)
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
Backport 51669: Make sure memory is properly cleaned up in file_init (even though this should not be able to happen since we already parsed the args)
-
Neal Norwitz yazdı
generator expressions (x for x, in ... ) works again. Sigh, I only fixed for loops the first time, not list comps and genexprs too. I couldn't find any more unpacking cases where there is a similar bug lurking.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-