- 30 Eyl, 2006 8 kayıt (commit)
-
-
Georg Brandl yazdı
with a slash. (backport from rev. 52065)
-
Georg Brandl yazdı
(backport from rev. 52063)
-
Georg Brandl yazdı
number of arguments, as was the case in Python 2.4. (backport from rev. 52061)
-
Georg Brandl yazdı
keyword arguments any more (previously they accepted them, but didn't use them). (backport from rev. 52058)
-
Georg Brandl yazdı
GNOME browser in case it is a command with args. (backport from rev. 52056)
-
Georg Brandl yazdı
(backport from rev. 52053)
-
Gregory P. Smith yazdı
-
George Yoshida yazdı
Since this paragraph is about exception's message attribute(2.5 feature), I will not backport to 2.4 branch.
-
- 27 Eyl, 2006 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 25 Eyl, 2006 3 kayıt (commit)
-
-
Georg Brandl yazdı
Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)). These tests should be improved. Hopefully this fixes variations when flipping back and forth between fpdef and fplist.
-
Georg Brandl yazdı
Fix %zd string formatting on Mac OS X so it prints negative numbers. In addition to testing positive numbers, verify negative numbers work in configure. In order to avoid compiler warnings on OS X 10.4, also change the order of the check for the format character to use (PY_FORMAT_SIZE_T) in the sprintf format for Py_ssize_t. This patch changes PY_FORMAT_SIZE_T from "" to "l" if it wasn't defined at configure time. Need to verify the buildbot results.
-
Georg Brandl yazdı
-
- 24 Eyl, 2006 3 kayıt (commit)
-
-
Georg Brandl yazdı
being raised when print_exc() was called without an exception set. In version 2.4, this printed "None", restored that behavior. (backport from rev. 51995)
-
Georg Brandl yazdı
not being recognized as a keyword after, e.g., this statement: from __future__ import division, with_statement (backport from rev. 51993)
-
Georg Brandl yazdı
(backport from rev. 51991)
-
- 23 Eyl, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 21 Eyl, 2006 3 kayıt (commit)
-
-
Jack Diederich yazdı
-
Jack Diederich yazdı
* regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t which breaks negative counts * added test for negative numbers
-
Brett Cannon yazdı
-
- 19 Eyl, 2006 1 kayıt (commit)
-
-
Anthony Baxter yazdı
-
- 18 Eyl, 2006 4 kayıt (commit)
-
-
Anthony Baxter yazdı
(damn, it's nice to see the line #define PY_VERSION "2.5" in patchlevel.h)
-
Anthony Baxter yazdı
-
Martin v. Löwis yazdı
adding -fwrapv helps.
-
Martin v. Löwis yazdı
-
- 17 Eyl, 2006 1 kayıt (commit)
-
-
Ronald Oussoren yazdı
There is an issue with custom icons on directories in the 2.5c2 installer, don't set a custom icon on "/Applications/MacPython 2.5" for now. Also make sure that the installer doesn't crap out when the Makefile in the system's python installation has other customizations than we expect.
-
- 15 Eyl, 2006 4 kayıt (commit)
-
-
Fred Drake yazdı
and to include the default value
-
Fred Drake yazdı
- minor markup cleanup
-
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).
-