summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Apply patch from Martin v. Loewis: Avoid function pointer casts.Thomas Heller2006-03-202-34/+34
| | | | https://sourceforge.net/tracker/?func=detail&atid=532156&aid=1453037&group_id=71702
* Remove mention of fpectl in README.Georg Brandl2006-03-201-5/+0
|
* Damn Coverity. I can't even sneak in a leak any more. :-)Neal Norwitz2006-03-201-1/+1
|
* Fix another bug found by Coverty.Thomas Heller2006-03-201-1/+1
|
* Fix bug found by Coverty.Thomas Heller2006-03-201-1/+1
|
* Plug a leak in the ctypes test suite when tests are run repeatedly.Thomas Heller2006-03-201-0/+5
|
* Accessing unaligned structure fields works now on all architectures.Thomas Heller2006-03-203-84/+192
| | | | Including unittest.
* The helper is only necessary for wait3/4.Neal Norwitz2006-03-201-0/+2
|
* whitespace n11nAnthony Baxter2006-03-202-11/+11
|
* Try to cleanup a lot of boilerplate #ifdef wrt wait types and make the codeNeal Norwitz2006-03-201-143/+47
| | | | more consistent (and smaller by 85 lines or so).
* Make some functions static, reformat function decl to be consistent and ↵Neal Norwitz2006-03-201-7/+10
| | | | check for error from PyModule_GetDict()
* Get Py_DEPRECATED to work with gcc 4.x tooNeal Norwitz2006-03-201-1/+2
|
* moved older releases into HISTORYAnthony Baxter2006-03-202-5287/+5287
|
* Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. ↵Neal Norwitz2006-03-2011-67/+307
| | | | | | | | Schroeder. This was a fair amount of rework of the patch. Refactored test_fork1 so it could be reused by the new tests for wait3/4. Also made them into new style unittests (derive from unittest.TestCase).
* experimenting with release stuff. please ignoreAnthony Baxter2006-03-201-0/+1
|
* replace use of int16_t with a (typedef'd) short, to fix Windows buildbots.Anthony Baxter2006-03-201-1199/+1201
| | | | expand tabs.
* ignore the fetched NormalizationTest.txt fileAnthony Baxter2006-03-200-0/+0
|
* SF [ 1231053 ] audioop - alaw encoding/decoding added, code updatedAnthony Baxter2006-03-204-99/+350
| | | | | | | | | 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
* SF #1445431, fix some leaks in error conditions.Neal Norwitz2006-03-202-13/+19
|
* Get rid of some warnings.Neal Norwitz2006-03-201-2/+2
|
* Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace()Neal Norwitz2006-03-202-4/+20
| | | | | | returns a non-string when converting %Z. Will backport.
* Update function name to reflect params and stop casting to long to avoid ↵Neal Norwitz2006-03-201-5/+5
| | | | losing data
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-207-16/+19
| | | | | | | | This will hopefully get rid of some Coverity warnings, be a hint to developers, and be marginally faster. Some asserts were added when the type is currently known, but depends on values from another function.
* Source file f.flush() after writing; trying to avoid lossage if userKurt B. Kaiser2006-03-192-1/+5
| | | | kills GUI. Report from B. Sherwood. Backport to 2.3.4.
* Update tutorial wrt PEP 341 try-except-finally statementGeorg Brandl2006-03-191-13/+43
|
* Ignore api.{dvi,idx,ind,l2h,log,toc} and modapi.ind, via suffixBarry Warsaw2006-03-180-0/+0
| | | | wildcards.
* Ignore *.pyc and *.pyoHye-Shik Chang2006-03-180-0/+0
|
* Change raise statement to PEP 8 style.Walter Dörwald2006-03-181-2/+1
|
* Shim for test_email_renamed.py tests.Barry Warsaw2006-03-181-0/+13
|
* Merge email package 4.0 from the sandbox, including documentation, test cases,Barry Warsaw2006-03-1844-470/+3823
| | | | and NEWS updates.
* Add tests for the C APIs PyCodec_IncrementalEncoder() andWalter Dörwald2006-03-182-2/+38
| | | | PyCodec_IncrementalDecoder().
* Release codecs variable earlier.Walter Dörwald2006-03-181-4/+2
|
* Fix compiler warning.Thomas Heller2006-03-181-1/+1
|
* Bug #1353433: be conciliant with spaces in redirect URLsGeorg Brandl2006-03-181-1/+3
|
* Previously, Python code had no easy way to access the contents of aGeorg Brandl2006-03-182-0/+23
| | | | | cell object. Now, a ``cell_contents`` attribute has been added (closes patch #1170323).
* You need at least one \itemAndrew M. Kuchling2006-03-171-1/+1
|
* Write sectionAndrew M. Kuchling2006-03-171-1/+19
|
* RFE #567972: Socket objects' family, type and proto properties areGeorg Brandl2006-03-175-2/+55
| | | | now exposed via new get...() methods.
* Fix some missing checks after PyTuple_New, PyList_New, PyDict_NewGeorg Brandl2006-03-177-7/+27
|
* Remove the lib-old modules from Doc/lib/libundoc.tex.Georg Brandl2006-03-171-112/+14
| | | | | Now only Modules/timingmodule.c is left. Should that be removed, too? (dito for clmodule and svmodule)
* Fix bug 1441408 where a double colon didn't trigger extended slice semantics ↵Nick Coghlan2006-03-171-8/+12
| | | | (applies patch 1452332)
* More \exception fixes.Georg Brandl2006-03-1718-67/+71
|
* Add two itemsAndrew M. Kuchling2006-03-171-0/+26
|
* Markup fixAndrew M. Kuchling2006-03-171-1/+2
|
* Merge changes from the upstream version:Thomas Heller2006-03-177-91/+190
| | | | | - cast is implemented as a foreign function now - On Windows, it is now possible to access functions exported by ordinal only
* Remove mention of lib-old, and list more deleted modulesAndrew M. Kuchling2006-03-171-17/+2
|
* Add some itemsAndrew M. Kuchling2006-03-171-1/+17
|
* as is on the road to keyword-hood, use a different var name.Neal Norwitz2006-03-171-7/+7
|
* Oops, copied the wrong code from keeprefs. Get the right codeNeal Norwitz2006-03-171-4/+9
| | | | | | this time and call gc.collect(), since there is some garbage. The original code didn't really leak (if gc.collect() was called).
* Update/expand on comments about leaking tests.Neal Norwitz2006-03-172-4/+6
|