- 10 Haz, 2009 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 07 Tem, 2008 1 kayıt (commit)
-
-
Facundo Batista yazdı
-
- 11 Haz, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
Added checks for integer overflows, contributed by Google. Some are only available if asserts are left in the code, in cases where they can't be triggered from Python code.
-
- 09 Haz, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
http://mail.python.org/pipermail/python-dev/2008-June/079988.html Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names in the spirit of 3.0 are available via a #define only. See the email thread.
-
- 26 May, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 19 Eki, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
PyArg_ParseTuple.
-
- 28 May, 2006 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 20 Mar, 2006 3 kayıt (commit)
-
-
Neal Norwitz yazdı
Make some functions static, reformat function decl to be consistent and check for error from PyModule_GetDict()
-
Anthony Baxter yazdı
expand tabs.
-
Anthony Baxter yazdı
This patch adds a-LAW encoding to audioop and replaces the old u-LAW encoding/decoding code with the current code from sox. Possible issues: the code from sox uses int16_t. Code by Lars Immisch
-
- 07 Mar, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
All of these (except _lsprof.c) should be backported. Particularly the hotshot change which validates sys.path. Can someone backport?
-
- 15 Şub, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 19 Ock, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Probably should be backported.
-
- 02 Agu, 2002 1 kayıt (commit)
-
-
Mark Hammond yazdı
for Py_Main(). Thanks to Kalle Svensson and Skip Montanaro for the patches.
-
- 17 Ock, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 07 Ara, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
obnoxious to compute and easier to explain. No compromise on safety.
-
- 05 Ara, 2001 2 kayıt (commit)
-
-
Tim Peters yazdı
yesterday -- repair that. Also renamed the silly size_times_nchannels to bytes_per_frame.
-
Tim Peters yazdı
Bugfix candidate. A numerically naive computation of output buffer size caused crashes and spurious MemoryErrors for reasonable arguments. audioop_ratecv(): Avoid spurious overflow by careful reworking of the buffer size computations, triggering MemoryError if and only if the final buffer size can't be represented in a C int (although PyString_FromStringAndSize may legitimately raise MemoryError even if it does fit in a C int). All reasonable arguments should work as intended now, and all unreasonable arguments should be cuaght.
-
- 01 Eyl, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This should match the situation in the 1.6b1 tree.
-
- 31 Agu, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 04 Agu, 2000 1 kayıt (commit)
-
-
Moshe Zadka yazdı
-
- 31 Tem, 2000 1 kayıt (commit)
-
-
Peter Schneider-Kamp yazdı
marked my*.h as obsolete
-
- 21 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
and a couple of functions that were missed in the previous batches. Not terribly tested, but very carefully scrutinized, three times. All these were found by the little findkrc.py that I posted to python-dev, which means there might be more lurking. Cases such as this: long func(a, b) long a; long b; /* flagword */ { and other cases where the last ; in the argument list isn't followed by a newline and an opening curly bracket. Regexps to catch all are welcome, of course ;)
-
- 10 Tem, 2000 1 kayıt (commit)
-
-
Peter Schneider-Kamp yazdı
-
- 30 Haz, 2000 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 02 May, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
don't think that's what we want. There was some brief discussion of this somewhere but I don't recall where.
-
- 29 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
PyArg_ParseTuple() format string arguments as possible.
-
- 07 Eyl, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
on BeOS or Windows.
-
- 23 Nis, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 31 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 01 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(1) Use PyErr_NewException("module.class", NULL, NULL) to create the exception object. (2) Remove all calls to Py_FatalError(); instead, return or ignore the errors -- the import code now checks PyErr_Occurred() after calling a module's init function, so it's no longer a fatal error for the initialization to fail. Also did some small cleanups, e.g. removed unnecessary test for "already initialized" from initfpectl(), and unified initposix()/initnt(). I haven't checked this very thoroughly, so while the changes are pretty trivial -- beware of untested code!
-
- 22 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 May, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(Sjoerd)
-
- 09 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 14 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
add(): better handling of overflow (substitute maxval instead of throwing away higher order bits). ratecv(): some bugfixes, Sjoerd says.
-
- 17 Ock, 1997 1 kayıt (commit)
-
-
Roger E. Masse yazdı
Reindented.
-
- 03 Ock, 1997 1 kayıt (commit)
-
-
Roger E. Masse yazdı
-
- 05 Ara, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-