summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Ignore ctypes leaks, but add a test case so we do not forget.Neal Norwitz2006-03-172-1/+12
|
* Try to find a host that responds slower from python.org so this test does ↵Neal Norwitz2006-03-171-1/+1
| | | | not fail on macteagle (G4 OSX.4 in buildbot)
* Introduced symbol PY_FORMAT_SIZE_T. See the new commentsTim Peters2006-03-172-31/+61
| | | | | in pyport.h. Changed PyString_FromFormatV() to use it instead of inlining its own maze of #if'ery.
* Fix wrong argument format in PyCodec_IncrementalEncoder() andWalter Dörwald2006-03-161-96/+57
| | | | | | | | PyCodec_IncrementalDecoder(). Factor out common code from PyCodec_Encoder()/PyCodec_Decoder(), PyCodec_IncrementalEncoder()/PyCodec_IncrementalDecoder() and PyCodec_StreamReader()/PyCodec_StreamWriter().
* Fix a test that fails when libGL.so and libGLU.so are not installed (on ↵Thomas Heller2006-03-161-2/+4
| | | | posix systems).
* Fix a leak that would happen under error conditions (found by Coverty).Thomas Heller2006-03-161-0/+1
|
* Use int 0 as default defval for LCID if nothing has been supplied.Thomas Heller2006-03-161-3/+8
|
* Fix compiler warning.Thomas Heller2006-03-161-1/+1
|
* Fixes from Neal Norwitz, plus other small fixes.Thomas Heller2006-03-161-8/+18
|
* Rewrite the AllocFunctionCallback function for better error handling.Thomas Heller2006-03-161-15/+16
| | | | Hope that fixes one or two Coverty warnings.
* Set eol-style to native.Tim Peters2006-03-161-13/+13
|
* Update test_winsound to check for a configured sound card (using a VBScriptTrent Mick2006-03-162-34/+128
| | | | | helper written by Roger Upole and Mark Hammond) and adjust the expected PlaySoundTest case results accordingly.
* Make mktuple consistent with mklist to get rid of Coverity warnings. Also ↵Neal Norwitz2006-03-161-10/+10
| | | | use macro version of SetItem since we know everything is setup.
* Add some versionadded info to new incremental codec docs and fix doco nits.Neal Norwitz2006-03-162-2/+8
|
* Don't delete non-autogenerated source files when cleaning up.Thomas Heller2006-03-161-2/+2
|
* Remove some more references to regex that I missed.Neal Norwitz2006-03-165-25/+0
|
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-1669-7120/+73
|
* Add a news entry about the sre/re swap.Neal Norwitz2006-03-161-0/+3
|
* Spel compatibility write.Neal Norwitz2006-03-161-1/+1
|
* Add back an sre.py that should be backwards compatible except for the warning.Neal Norwitz2006-03-161-0/+10
|
* Rename sre.py -> re.pyNeal Norwitz2006-03-165-6/+7
|
* Remove re.py, in order to rename sre.py -> re.py (svn seems to require 2 steps).Neal Norwitz2006-03-161-6/+0
|
* The pre module has been gone for a while. Need to go through and find other ↵Neal Norwitz2006-03-161-3/+0
| | | | modules that no longer exists, since errors are silently ignored.
* Oops! Use python_d.exe _before_ it's destroyed :-)Tim Peters2006-03-161-1/+1
|
* Change the Windows buildbot "clean" step to removeTim Peters2006-03-161-1/+4
| | | | stale .pyc files.
* Merge the tim-obmalloc branch to the trunk.Tim Peters2006-03-162-205/+537
| | | | | | | This is a heavily altered derivative of SF patch 1123430, Evan Jones's heroic effort to make obmalloc return unused arenas to the system free(), with some heuristic strategies to make it more likley that arenas eventually _can_ be freed.
* Instead of relative imports, use (implicitly) absolute ones.Guido van Rossum2006-03-152-2/+2
|
* Document the other change from patch #1359365.Walter Dörwald2006-03-151-2/+4
|
* SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueErrorWalter Dörwald2006-03-153-1/+12
| | | | now if close() has been called before (like file and StringIO.StringIO do)