| Commit message (Expand) | Author | Age | Files | Lines |
* | issue2858: Fix potential memory corruption when bsddb.db.DBEnv.lock_get | Gregory P. Smith | 2008-05-17 | 1 | -21/+22 |
|
|
* | Added Python 3.0 warning to cPickle. | Alexandre Vassalotti | 2008-05-16 | 1 | -0/+6 |
|
|
* | #2890: support os.O_ASYNC and fcntl.FASYNC. | Georg Brandl | 2008-05-16 | 2 | -0/+8 |
|
|
* | Following Amaury's advice | Christian Heimes | 2008-05-16 | 1 | -1/+1 |
|
|
* | Fixed #2870: cmathmodule.c compile error | Christian Heimes | 2008-05-16 | 1 | -1/+1 |
|
|
* | Deprecate sunaudiodev/SUNAUDIODEV for removal in 3.0. | Brett Cannon | 2008-05-16 | 1 | -0/+4 |
|
|
* | Deprecate imgfile for removal in 3.0. | Brett Cannon | 2008-05-15 | 1 | -0/+5 |
|
|
* | Deprecated 'fm' for removal in 3.0. | Brett Cannon | 2008-05-15 | 1 | -0/+5 |
|
|
* | FL, flp, and fl from IRIX have been deprecated for removal in 3.0. | Brett Cannon | 2008-05-15 | 1 | -0/+5 |
|
|
* | Deprecate DEVICE, GL, gl, and the related modules cgen and cgensupport for re... | Brett Cannon | 2008-05-15 | 2 | -0/+8 |
|
|
* | Deprecate CL, CL_old, and cl for 3.0. | Brett Cannon | 2008-05-14 | 1 | -1/+5 |
|
|
* | The CD and cd modules for IRIX are deprecated for 3.0. | Brett Cannon | 2008-05-14 | 1 | -0/+4 |
|
|
* | Deprecate al/AL for removal in 3.0. | Brett Cannon | 2008-05-14 | 1 | -0/+4 |
|
|
* | bsddb module updated to version 4.6.4 | Jesus Cea | 2008-05-13 | 2 | -301/+1443 |
|
|
* | Deprecate the timing module for removal in Python 3.0. | Brett Cannon | 2008-05-12 | 1 | -0/+4 |
|
|
* | Deprecate the sv module as per PEP 4. | Brett Cannon | 2008-05-12 | 1 | -0/+4 |
|
|
* | Depreate imageop for removal in 3.0. | Brett Cannon | 2008-05-12 | 1 | -0/+5 |
|
|
* | Put Lib/lib-old back on to sys.path for module renames. | Brett Cannon | 2008-05-11 | 1 | -1/+4 |
|
|
* | #1326: document and test zipimporter.archive and zipimporter.prefix. | Georg Brandl | 2008-05-11 | 1 | -2/+9 |
|
|
* | Added module stub for copy_reg renaming in 3.0. | Alexandre Vassalotti | 2008-05-11 | 2 | -17/+17 |
|
|
* | Flesh out the 3.0 deprecation to suggest using the ctypes module. | Brett Cannon | 2008-05-11 | 1 | -1/+1 |
|
|
* | The linuxaudidev module has been deprecated for removal in Python 3.0. | Brett Cannon | 2008-05-11 | 1 | -0/+4 |
|
|
* | Deprecate the dl module for removal in 3.0. | Brett Cannon | 2008-05-10 | 1 | -0/+4 |
|
|
* | Deprecate the bsddb185 module for removal in 3.0. | Brett Cannon | 2008-05-10 | 1 | -0/+4 |
|
|
* | Deprecate the pure module for 3.0. | Brett Cannon | 2008-05-09 | 1 | -0/+4 |
|
|
* | Backport fast alternate io.BytesIO implementation. | Alexandre Vassalotti | 2008-05-09 | 2 | -48/+771 |
|
|
* | Issue #2487. math.ldexp(x, n) raised OverflowError when n was large and | Mark Dickinson | 2008-05-09 | 1 | -12/+54 |
|
|
* | Implemented PEP 370 | Christian Heimes | 2008-05-06 | 1 | -1/+10 |
|
|
* | Intern static string | Christian Heimes | 2008-05-06 | 1 | -1/+1 |
|
|
* | Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob | Brett Cannon | 2008-05-05 | 1 | -0/+609 |
|
|
* | Implemented feature request 2157: Converter names are cut off at '(' | Gerhard Häring | 2008-05-04 | 1 | -1/+5 |
|
|
* | Applied sqliterow-richcmp.diff patch from Thomas Heller in Issue2152. The | Gerhard Häring | 2008-05-04 | 1 | -2/+26 |
|
|
* | SQLite requires 64-bit integers in order to build. So the whole HAVE_LONG_LONG | Gerhard Häring | 2008-05-04 | 1 | -4/+0 |
|
|
* | Rename the test_traceback_print() function to traceback_print() to prevent | Brett Cannon | 2008-04-28 | 1 | -3/+3 |
|
|
* | Fix a bug introduced by the warnings rewrite where tracebacks were being | Brett Cannon | 2008-04-28 | 1 | -0/+19 |
|
|
* | A little reformating of Py3k warnings | Benjamin Peterson | 2008-04-27 | 1 | -2/+2 |
|
|
* | Use PyErr_WarnPy3k throughout | Benjamin Peterson | 2008-04-27 | 1 | -8/+4 |
|
|
* | Add missing return type to dealloc. | Georg Brandl | 2008-04-26 | 1 | -1/+2 |
|
|
* | Add from_buffer and from_buffer_copy class methods to ctypes types. | Thomas Heller | 2008-04-25 | 1 | -0/+115 |
|
|
* | Remove cyclic reference in CFuncPtr instances; see issue #2682. | Thomas Heller | 2008-04-24 | 3 | -50/+133 |
|
|
* | Fix typo. | Martin v. Löwis | 2008-04-24 | 1 | -1/+1 |
|
|
* | Silence 'r may be used uninitialized' compiler warning. | Mark Dickinson | 2008-04-21 | 1 | -0/+1 |
|
|
* | math.atan2 is misbehaving on Windows; this patch | Mark Dickinson | 2008-04-20 | 1 | -1/+37 |
|
|
* | Even more fixes for alpha Tru64, this time for | Mark Dickinson | 2008-04-20 | 1 | -1/+10 |
|
|
* | Issue 2662: Initialize special value tables dynamically (i.e. when | Mark Dickinson | 2008-04-20 | 1 | -109/+128 |
|
|
* | Yet more explicit special case handling to make | Mark Dickinson | 2008-04-20 | 1 | -47/+55 |
|
|
* | FreeBSD doesn't follow C99 for modf(inf); so add explicit | Mark Dickinson | 2008-04-20 | 1 | -0/+9 |
|
|
* | Additional special-case handling for math.pow. | Mark Dickinson | 2008-04-19 | 1 | -6/+13 |
|
|
* | Additional tests for math.pow, and extra special-case | Mark Dickinson | 2008-04-19 | 1 | -0/+11 |
|
|
* | I finally got the time to update and merge Mark's and my trunk-math branch. T... | Christian Heimes | 2008-04-18 | 2 | -229/+1230 |
|
|