summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* Tweak the comments and formatting.Raymond Hettinger2008-05-231-76/+47
|
* Issue #2819: Add math.sum, a function that sums a sequence of floatsMark Dickinson2008-05-231-0/+223
| | | | | efficiently but with no intermediate loss of precision. Based on Raymond Hettinger's ASPN recipe. Thanks Jean Brouwers for the patch.
* bsddb module updated to version 4.7.0Jesus Cea2008-05-222-6/+85
|
* On HPUX, -fPIC must be used for linking. _ctypes now builds on HP-UXThomas Heller2008-05-201-0/+1
| | | | | | | IA64 and PA machines. The ctypes unittests work fine on the IA64, but dump core in test_qsort on the PA.
* Revert copy_reg -> copyreg rename.Georg Brandl2008-05-202-8/+8
|
* issue2858: Fix potential memory corruption when bsddb.db.DBEnv.lock_getGregory P. Smith2008-05-171-21/+22
| | | | | and other bsddb.db object constructors raised an exception. Debugging & patch by Neal Norowitz.
* Added Python 3.0 warning to cPickle.Alexandre Vassalotti2008-05-161-0/+6
|
* #2890: support os.O_ASYNC and fcntl.FASYNC.Georg Brandl2008-05-162-0/+8
|
* Following Amaury's adviceChristian Heimes2008-05-161-1/+1
|
* Fixed #2870: cmathmodule.c compile errorChristian Heimes2008-05-161-1/+1
|
* Deprecate sunaudiodev/SUNAUDIODEV for removal in 3.0.Brett Cannon2008-05-161-0/+4
|
* Deprecate imgfile for removal in 3.0.Brett Cannon2008-05-151-0/+5
|
* Deprecated 'fm' for removal in 3.0.Brett Cannon2008-05-151-0/+5
|
* FL, flp, and fl from IRIX have been deprecated for removal in 3.0.Brett Cannon2008-05-151-0/+5
|
* Deprecate DEVICE, GL, gl, and the related modules cgen and cgensupport for ↵Brett Cannon2008-05-152-0/+8
| | | | removal in 3.0.
* Deprecate CL, CL_old, and cl for 3.0.Brett Cannon2008-05-141-1/+5
|
* The CD and cd modules for IRIX are deprecated for 3.0.Brett Cannon2008-05-141-0/+4
|
* Deprecate al/AL for removal in 3.0.Brett Cannon2008-05-141-0/+4
|
* bsddb module updated to version 4.6.4Jesus Cea2008-05-132-301/+1443
|
* Deprecate the timing module for removal in Python 3.0.Brett Cannon2008-05-121-0/+4
|
* Deprecate the sv module as per PEP 4.Brett Cannon2008-05-121-0/+4
|
* Depreate imageop for removal in 3.0.Brett Cannon2008-05-121-0/+5
|
* Put Lib/lib-old back on to sys.path for module renames.Brett Cannon2008-05-111-1/+4
|
* #1326: document and test zipimporter.archive and zipimporter.prefix.Georg Brandl2008-05-111-2/+9
|
* Added module stub for copy_reg renaming in 3.0.Alexandre Vassalotti2008-05-112-17/+17
| | | | | | Renamed copy_reg to copyreg in the standard library, to avoid spurious warnings and ease later merging to py3k branch. Public documentation remains intact.
* Flesh out the 3.0 deprecation to suggest using the ctypes module.Brett Cannon2008-05-111-1/+1
|
* The linuxaudidev module has been deprecated for removal in Python 3.0.Brett Cannon2008-05-111-0/+4
|
* Deprecate the dl module for removal in 3.0.Brett Cannon2008-05-101-0/+4
|
* Deprecate the bsddb185 module for removal in 3.0.Brett Cannon2008-05-101-0/+4
|
* Deprecate the pure module for 3.0.Brett Cannon2008-05-091-0/+4
|
* Backport fast alternate io.BytesIO implementation.Alexandre Vassalotti2008-05-092-48/+771
| | | | | Merged r62778, r62779, r62802, r62806, r62807, r62808, r62809, r62844, r62846, r62952, r62956.
* Issue #2487. math.ldexp(x, n) raised OverflowError when n was large andMark Dickinson2008-05-091-12/+54
| | | | negative; fix to return an (appropriately signed) zero instead.
* Implemented PEP 370Christian Heimes2008-05-061-1/+10
|
* Intern static stringChristian Heimes2008-05-061-1/+1
| | | | Use float constructors instead of magic code for float constants
* Add the 'json' package. Code taken from simplejson 1.9 and contributed by BobBrett Cannon2008-05-051-0/+609
| | | | | | Ippolito. Closes issue #2750.
* Implemented feature request 2157: Converter names are cut off at '('Gerhard Häring2008-05-041-1/+5
| | | | | | characters. This avoids the common case of something like 'NUMBER(10)' not being parsed as 'NUMBER', like expected. Also corrected the docs about converter names being case-sensitive. They aren't any longer.
* Applied sqliterow-richcmp.diff patch from Thomas Heller in Issue2152. TheGerhard Häring2008-05-041-2/+26
| | | | sqlite3.Row type is now correctly hashable.
* SQLite requires 64-bit integers in order to build. So the whole HAVE_LONG_LONGGerhard Häring2008-05-041-4/+0
| | | | #ifdefing was useless.
* Rename the test_traceback_print() function to traceback_print() to preventBrett Cannon2008-04-281-3/+3
| | | | test_capi from automatically calling the function.
* Fix a bug introduced by the warnings rewrite where tracebacks were beingBrett Cannon2008-04-281-0/+19
| | | | | | improperly indented. Closes issue #2699.
* A little reformating of Py3k warningsBenjamin Peterson2008-04-271-2/+2
|
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-8/+4
|
* Add missing return type to dealloc.Georg Brandl2008-04-261-1/+2
|
* Add from_buffer and from_buffer_copy class methods to ctypes types.Thomas Heller2008-04-251-0/+115
|
* Remove cyclic reference in CFuncPtr instances; see issue #2682.Thomas Heller2008-04-243-50/+133
| | | | Backport candidate for the release25-maint branch.
* Fix typo.Martin v. Löwis2008-04-241-1/+1
|
* Silence 'r may be used uninitialized' compiler warning.Mark Dickinson2008-04-211-0/+1
|
* math.atan2 is misbehaving on Windows; this patchMark Dickinson2008-04-201-1/+37
| | | | | should fix the problem in the same way that the cmath.phase problems were fixed.
* Even more fixes for alpha Tru64, this time forMark Dickinson2008-04-201-1/+10
| | | | the phase and polar methods.
* Issue 2662: Initialize special value tables dynamically (i.e. whenMark Dickinson2008-04-201-109/+128
| | | | | | | | cmath module is loaded) instead of statically. This fixes compile-time problems on platforms where HUGE_VAL is an extern variable rather than a constant. Thanks Hirokazu Yamamoto for the patch.