]> granicus.if.org Git - python/log
python
18 years agoexperimenting with release stuff. please ignore
Anthony Baxter [Mon, 20 Mar 2006 06:25:04 +0000 (06:25 +0000)]
experimenting with release stuff. please ignore

18 years agoreplace use of int16_t with a (typedef'd) short, to fix Windows buildbots.
Anthony Baxter [Mon, 20 Mar 2006 05:58:21 +0000 (05:58 +0000)]
replace use of int16_t with a (typedef'd) short, to fix Windows buildbots.
expand tabs.

18 years agoignore the fetched NormalizationTest.txt file
Anthony Baxter [Mon, 20 Mar 2006 05:29:26 +0000 (05:29 +0000)]
ignore the fetched NormalizationTest.txt file

18 years agoSF [ 1231053 ] audioop - alaw encoding/decoding added, code updated
Anthony Baxter [Mon, 20 Mar 2006 05:21:58 +0000 (05:21 +0000)]
SF [ 1231053 ] audioop - alaw encoding/decoding added, code updated
 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

18 years agoSF #1445431, fix some leaks in error conditions.
Neal Norwitz [Mon, 20 Mar 2006 04:08:12 +0000 (04:08 +0000)]
SF #1445431, fix some leaks in error conditions.

18 years agoGet rid of some warnings.
Neal Norwitz [Mon, 20 Mar 2006 02:04:23 +0000 (02:04 +0000)]
Get rid of some warnings.

18 years agoFix problem spotted by Coverity that occurs if tzinfo.tzname().replace()
Neal Norwitz [Mon, 20 Mar 2006 01:58:39 +0000 (01:58 +0000)]
Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace()
returns a non-string when converting %Z.

Will backport.

18 years agoUpdate function name to reflect params and stop casting to long to avoid losing data
Neal Norwitz [Mon, 20 Mar 2006 01:55:26 +0000 (01:55 +0000)]
Update function name to reflect params and stop casting to long to avoid losing data

18 years agoUse macro versions instead of function versions when we already know the type.
Neal Norwitz [Mon, 20 Mar 2006 01:53:23 +0000 (01:53 +0000)]
Use macro versions instead of function versions when we already know the type.
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.

18 years agoSource file f.flush() after writing; trying to avoid lossage if user
Kurt B. Kaiser [Sun, 19 Mar 2006 20:40:05 +0000 (20:40 +0000)]
Source file f.flush() after writing; trying to avoid lossage if user
kills GUI.  Report from B. Sherwood.  Backport to 2.3.4.

18 years agoUpdate tutorial wrt PEP 341 try-except-finally statement
Georg Brandl [Sun, 19 Mar 2006 11:20:29 +0000 (11:20 +0000)]
Update tutorial wrt PEP 341 try-except-finally statement

18 years agoIgnore api.{dvi,idx,ind,l2h,log,toc} and modapi.ind, via suffix
Barry Warsaw [Sat, 18 Mar 2006 18:12:26 +0000 (18:12 +0000)]
Ignore api.{dvi,idx,ind,l2h,log,toc} and modapi.ind, via suffix
wildcards.

18 years agoIgnore *.pyc and *.pyo
Hye-Shik Chang [Sat, 18 Mar 2006 18:07:35 +0000 (18:07 +0000)]
Ignore *.pyc and *.pyo

18 years agoChange raise statement to PEP 8 style.
Walter Dörwald [Sat, 18 Mar 2006 16:35:17 +0000 (16:35 +0000)]
Change raise statement to PEP 8 style.

18 years agoShim for test_email_renamed.py tests.
Barry Warsaw [Sat, 18 Mar 2006 16:17:17 +0000 (16:17 +0000)]
Shim for test_email_renamed.py tests.

18 years agoMerge email package 4.0 from the sandbox, including documentation, test cases,
Barry Warsaw [Sat, 18 Mar 2006 15:41:53 +0000 (15:41 +0000)]
Merge email package 4.0 from the sandbox, including documentation, test cases,
and NEWS updates.

18 years agoAdd tests for the C APIs PyCodec_IncrementalEncoder() and
Walter Dörwald [Sat, 18 Mar 2006 14:22:26 +0000 (14:22 +0000)]
Add tests for the C APIs PyCodec_IncrementalEncoder() and
PyCodec_IncrementalDecoder().

18 years agoRelease codecs variable earlier.
Walter Dörwald [Sat, 18 Mar 2006 14:05:43 +0000 (14:05 +0000)]
Release codecs variable earlier.

18 years agoFix compiler warning.
Thomas Heller [Sat, 18 Mar 2006 12:52:54 +0000 (12:52 +0000)]
Fix compiler warning.

18 years agoBug #1353433: be conciliant with spaces in redirect URLs
Georg Brandl [Sat, 18 Mar 2006 11:35:18 +0000 (11:35 +0000)]
Bug #1353433: be conciliant with spaces in redirect URLs

18 years agoPreviously, Python code had no easy way to access the contents of a
Georg Brandl [Sat, 18 Mar 2006 07:59:59 +0000 (07:59 +0000)]
Previously, Python code had no easy way to access the contents of a
cell object. Now, a ``cell_contents`` attribute has been added
(closes patch #1170323).

18 years agoYou need at least one \item
Andrew M. Kuchling [Fri, 17 Mar 2006 22:25:15 +0000 (22:25 +0000)]
You need at least one \item

18 years agoWrite section
Andrew M. Kuchling [Fri, 17 Mar 2006 21:48:46 +0000 (21:48 +0000)]
Write section

18 years agoRFE #567972: Socket objects' family, type and proto properties are
Georg Brandl [Fri, 17 Mar 2006 19:17:34 +0000 (19:17 +0000)]
RFE #567972: Socket objects' family, type and proto properties are
now exposed via new get...() methods.

18 years agoFix some missing checks after PyTuple_New, PyList_New, PyDict_New
Georg Brandl [Fri, 17 Mar 2006 19:03:25 +0000 (19:03 +0000)]
Fix some missing checks after PyTuple_New, PyList_New, PyDict_New

18 years agoRemove the lib-old modules from Doc/lib/libundoc.tex.
Georg Brandl [Fri, 17 Mar 2006 18:47:14 +0000 (18:47 +0000)]
Remove the lib-old modules from Doc/lib/libundoc.tex.

Now only Modules/timingmodule.c is left. Should that be removed, too?
(dito for clmodule and svmodule)

18 years agoFix bug 1441408 where a double colon didn't trigger extended slice semantics (applies...
Nick Coghlan [Fri, 17 Mar 2006 17:59:10 +0000 (17:59 +0000)]
Fix bug 1441408 where a double colon didn't trigger extended slice semantics (applies patch 1452332)

18 years agoMore \exception fixes.
Georg Brandl [Fri, 17 Mar 2006 16:26:31 +0000 (16:26 +0000)]
More \exception fixes.

18 years agoAdd two items
Andrew M. Kuchling [Fri, 17 Mar 2006 15:56:41 +0000 (15:56 +0000)]
Add two items

18 years agoMarkup fix
Andrew M. Kuchling [Fri, 17 Mar 2006 15:56:13 +0000 (15:56 +0000)]
Markup fix

18 years agoMerge changes from the upstream version:
Thomas Heller [Fri, 17 Mar 2006 15:52:58 +0000 (15:52 +0000)]
Merge changes from the upstream version:
- cast is implemented as a foreign function now
- On Windows, it is now possible to access functions exported by ordinal only

18 years agoRemove mention of lib-old, and list more deleted modules
Andrew M. Kuchling [Fri, 17 Mar 2006 15:39:52 +0000 (15:39 +0000)]
Remove mention of lib-old, and list more deleted modules

18 years agoAdd some items
Andrew M. Kuchling [Fri, 17 Mar 2006 15:38:39 +0000 (15:38 +0000)]
Add some items

18 years agoas is on the road to keyword-hood, use a different var name.
Neal Norwitz [Fri, 17 Mar 2006 08:55:46 +0000 (08:55 +0000)]
as is on the road to keyword-hood, use a different var name.

18 years agoOops, copied the wrong code from keeprefs. Get the right code
Neal Norwitz [Fri, 17 Mar 2006 07:15:59 +0000 (07:15 +0000)]
Oops, copied the wrong code from keeprefs.  Get the right code
this time and call gc.collect(), since there is some garbage.

The original code didn't really leak (if gc.collect() was called).

18 years agoUpdate/expand on comments about leaking tests.
Neal Norwitz [Fri, 17 Mar 2006 04:52:38 +0000 (04:52 +0000)]
Update/expand on comments about leaking tests.

18 years agoIgnore ctypes leaks, but add a test case so we do not forget.
Neal Norwitz [Fri, 17 Mar 2006 04:45:38 +0000 (04:45 +0000)]
Ignore ctypes leaks, but add a test case so we do not forget.

18 years agoTry to find a host that responds slower from python.org so this test does not fail...
Neal Norwitz [Fri, 17 Mar 2006 04:37:34 +0000 (04:37 +0000)]
Try to find a host that responds slower from python.org so this test does not fail on macteagle (G4 OSX.4 in buildbot)

18 years agoIntroduced symbol PY_FORMAT_SIZE_T. See the new comments
Tim Peters [Fri, 17 Mar 2006 03:29:34 +0000 (03:29 +0000)]
Introduced symbol PY_FORMAT_SIZE_T.  See the new comments
in pyport.h.  Changed PyString_FromFormatV() to use it
instead of inlining its own maze of #if'ery.

18 years agoFix wrong argument format in PyCodec_IncrementalEncoder() and
Walter Dörwald [Thu, 16 Mar 2006 21:46:40 +0000 (21:46 +0000)]
Fix wrong argument format in PyCodec_IncrementalEncoder() and
PyCodec_IncrementalDecoder().

Factor out common code from PyCodec_Encoder()/PyCodec_Decoder(),
PyCodec_IncrementalEncoder()/PyCodec_IncrementalDecoder() and
PyCodec_StreamReader()/PyCodec_StreamWriter().

18 years agoFix a test that fails when libGL.so and libGLU.so are not installed (on posix systems).
Thomas Heller [Thu, 16 Mar 2006 20:09:22 +0000 (20:09 +0000)]
Fix a test that fails when libGL.so and libGLU.so are not installed (on posix systems).

18 years agoFix a leak that would happen under error conditions (found by Coverty).
Thomas Heller [Thu, 16 Mar 2006 20:02:36 +0000 (20:02 +0000)]
Fix a leak that would happen under error conditions (found by Coverty).

18 years agoUse int 0 as default defval for LCID if nothing has been supplied.
Thomas Heller [Thu, 16 Mar 2006 19:56:24 +0000 (19:56 +0000)]
Use int 0 as default defval for LCID if nothing has been supplied.

18 years agoFix compiler warning.
Thomas Heller [Thu, 16 Mar 2006 19:34:56 +0000 (19:34 +0000)]
Fix compiler warning.

18 years agoFixes from Neal Norwitz, plus other small fixes.
Thomas Heller [Thu, 16 Mar 2006 19:26:21 +0000 (19:26 +0000)]
Fixes from Neal Norwitz, plus other small fixes.

18 years agoRewrite the AllocFunctionCallback function for better error handling.
Thomas Heller [Thu, 16 Mar 2006 19:24:27 +0000 (19:24 +0000)]
Rewrite the AllocFunctionCallback function for better error handling.
Hope that fixes one or two Coverty warnings.

18 years agoSet eol-style to native.
Tim Peters [Thu, 16 Mar 2006 18:55:20 +0000 (18:55 +0000)]
Set eol-style to native.

18 years agoUpdate test_winsound to check for a configured sound card (using a VBScript
Trent Mick [Thu, 16 Mar 2006 17:34:41 +0000 (17:34 +0000)]
Update test_winsound to check for a configured sound card (using a VBScript
helper written by Roger Upole and Mark Hammond) and adjust the expected
PlaySoundTest case results accordingly.

18 years agoMake mktuple consistent with mklist to get rid of Coverity warnings. Also use macro...
Neal Norwitz [Thu, 16 Mar 2006 08:20:19 +0000 (08:20 +0000)]
Make mktuple consistent with mklist to get rid of Coverity warnings.  Also use macro version of SetItem since we know everything is setup.

18 years agoAdd some versionadded info to new incremental codec docs and fix doco nits.
Neal Norwitz [Thu, 16 Mar 2006 07:49:19 +0000 (07:49 +0000)]
Add some versionadded info to new incremental codec docs and fix doco nits.

18 years agoDon't delete non-autogenerated source files when cleaning up.
Thomas Heller [Thu, 16 Mar 2006 07:33:49 +0000 (07:33 +0000)]
Don't delete non-autogenerated source files when cleaning up.

18 years agoRemove some more references to regex that I missed.
Neal Norwitz [Thu, 16 Mar 2006 07:05:59 +0000 (07:05 +0000)]
Remove some more references to regex that I missed.

18 years agoRemove regsub, reconvert, regex, regex_syntax and everything under lib-old.
Neal Norwitz [Thu, 16 Mar 2006 06:50:13 +0000 (06:50 +0000)]
Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.

18 years agoAdd a news entry about the sre/re swap.
Neal Norwitz [Thu, 16 Mar 2006 06:40:39 +0000 (06:40 +0000)]
Add a news entry about the sre/re swap.

18 years agoSpel compatibility write.
Neal Norwitz [Thu, 16 Mar 2006 06:33:21 +0000 (06:33 +0000)]
Spel compatibility write.

18 years agoAdd back an sre.py that should be backwards compatible except for the warning.
Neal Norwitz [Thu, 16 Mar 2006 06:31:02 +0000 (06:31 +0000)]
Add back an sre.py that should be backwards compatible except for the warning.

18 years agoRename sre.py -> re.py
Neal Norwitz [Thu, 16 Mar 2006 06:30:02 +0000 (06:30 +0000)]
Rename sre.py -> re.py

18 years agoRemove re.py, in order to rename sre.py -> re.py (svn seems to require 2 steps).
Neal Norwitz [Thu, 16 Mar 2006 06:27:37 +0000 (06:27 +0000)]
Remove re.py, in order to rename sre.py -> re.py (svn seems to require 2 steps).

18 years agoThe pre module has been gone for a while. Need to go through and find other modules...
Neal Norwitz [Thu, 16 Mar 2006 06:21:19 +0000 (06:21 +0000)]
The pre module has been gone for a while.  Need to go through and find other modules that no longer exists, since errors are silently ignored.

18 years agoOops! Use python_d.exe _before_ it's destroyed :-)
Tim Peters [Thu, 16 Mar 2006 02:31:36 +0000 (02:31 +0000)]
Oops!  Use python_d.exe _before_ it's destroyed :-)

18 years agoChange the Windows buildbot "clean" step to remove
Tim Peters [Thu, 16 Mar 2006 01:54:16 +0000 (01:54 +0000)]
Change the Windows buildbot "clean" step to remove
stale .pyc files.

18 years agoMerge the tim-obmalloc branch to the trunk.
Tim Peters [Thu, 16 Mar 2006 01:14:46 +0000 (01:14 +0000)]
Merge the tim-obmalloc branch to the trunk.

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.

18 years agoInstead of relative imports, use (implicitly) absolute ones.
Guido van Rossum [Wed, 15 Mar 2006 23:08:13 +0000 (23:08 +0000)]
Instead of relative imports, use (implicitly) absolute ones.

18 years agoDocument the other change from patch #1359365.
Walter Dörwald [Wed, 15 Mar 2006 22:17:27 +0000 (22:17 +0000)]
Document the other change from patch #1359365.

18 years agoSF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError
Walter Dörwald [Wed, 15 Mar 2006 22:13:13 +0000 (22:13 +0000)]
SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError
now if close() has been called before (like file and StringIO.StringIO do)

18 years agoBackport from upstream version: compatibility with older Python
Thomas Heller [Wed, 15 Mar 2006 21:49:52 +0000 (21:49 +0000)]
Backport from upstream version: compatibility with older Python
versions.

18 years agoWhitespace normalization.
Tim Peters [Wed, 15 Mar 2006 18:08:37 +0000 (18:08 +0000)]
Whitespace normalization.

18 years agoFix typo.
Walter Dörwald [Wed, 15 Mar 2006 13:36:50 +0000 (13:36 +0000)]
Fix typo.

18 years agoDon't try to explicitly set path in runpy package tests (tests were broken on Windows)
Nick Coghlan [Wed, 15 Mar 2006 13:29:19 +0000 (13:29 +0000)]
Don't try to explicitly set path in runpy package tests (tests were broken on Windows)

18 years agoDon't let cleanup errors mask real errors in the runpy tests
Nick Coghlan [Wed, 15 Mar 2006 13:11:54 +0000 (13:11 +0000)]
Don't let cleanup errors mask real errors in the runpy tests

18 years agoCatch situations where currentframe() returns None. See SF patch #1447410, this is...
Vinay Sajip [Wed, 15 Mar 2006 12:45:07 +0000 (12:45 +0000)]
Catch situations where currentframe() returns None. See SF patch #1447410, this is a different implementation.

18 years agoMake test_runpy close all references to test modules before trying to delete the...
Nick Coghlan [Wed, 15 Mar 2006 12:40:38 +0000 (12:40 +0000)]
Make test_runpy close all references to test modules before trying to delete the underlying files

18 years agoAdd section
Andrew M. Kuchling [Wed, 15 Mar 2006 11:53:09 +0000 (11:53 +0000)]
Add section

18 years agoPatch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass
Walter Dörwald [Wed, 15 Mar 2006 11:35:15 +0000 (11:35 +0000)]
Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclass
of tuple) that provides incremental decoders and encoders (a way to use
stateful codecs without the stream API). Functions
codecs.getincrementaldecoder() and codecs.getincrementalencoder() have
been added.

18 years agoImplement PEP 338 which has been marked as accepted by GvR
Nick Coghlan [Wed, 15 Mar 2006 11:00:26 +0000 (11:00 +0000)]
Implement PEP 338 which has been marked as accepted by GvR

18 years agoRevert rev 43041, which introduced the "z" format qualifier
Tim Peters [Wed, 15 Mar 2006 09:17:20 +0000 (09:17 +0000)]
Revert rev 43041, which introduced the "z" format qualifier
unique to Python 2.5.

18 years agoCField_repr(): PyString_FromFormat() understands the
Tim Peters [Wed, 15 Mar 2006 08:41:15 +0000 (08:41 +0000)]
CField_repr():  PyString_FromFormat() understands the
C99 "z" qualifier on all platforms.

18 years agoIn 'make clean', delete some files that are generated by the _ctypes/libffi
Thomas Heller [Wed, 15 Mar 2006 08:34:38 +0000 (08:34 +0000)]
In 'make clean', delete some files that are generated by the _ctypes/libffi
configure step.

18 years agoSF patch #1359365: file and cStringIO raise a ValueError when next() is called
Walter Dörwald [Wed, 15 Mar 2006 08:23:53 +0000 (08:23 +0000)]
SF patch #1359365: file and cStringIO raise a ValueError when next() is called
after calling close(). Change StringIO, so that it behaves the same way.

18 years agoMove test code out of xxmodule and into _testcapimodule.c where it belongs.
Neal Norwitz [Wed, 15 Mar 2006 05:43:10 +0000 (05:43 +0000)]
Move test code out of xxmodule and into _testcapimodule.c where it belongs.

Will backport.

18 years agoUse relative imports in a few places where I noticed the need.
Guido van Rossum [Wed, 15 Mar 2006 04:33:54 +0000 (04:33 +0000)]
Use relative imports in a few places where I noticed the need.
(Ideally, all packages in Python 2.5 will use the relative import
syntax for all their relative import needs.)

18 years agoRenamed test_hashlib_speed.py to time_hashlib.py.
Tim Peters [Tue, 14 Mar 2006 22:48:56 +0000 (22:48 +0000)]
Renamed test_hashlib_speed.py to time_hashlib.py.

Since it's never intended that this script be run by
regrtest.py, it shouldn't have been named with a "test_"
prefix to begin with.  A consequence is that we shouldn't
see useless:

    test_hashlib_speed skipped -- not a unit test (stand alone benchmark)

lines in regrtest output anymore.

18 years agoTry to avoid many of the compiler warnings when compiling libffi by
Thomas Heller [Tue, 14 Mar 2006 20:52:24 +0000 (20:52 +0000)]
Try to avoid many of the compiler warnings when compiling libffi by
using a proper function prototype.

18 years agoCast an Py_ssize_t to int, to avoid a compiler warning.
Thomas Heller [Tue, 14 Mar 2006 20:39:27 +0000 (20:39 +0000)]
Cast an Py_ssize_t to int, to avoid a compiler warning.

18 years agoFor x86 Release and Debug builds, remove the /Wp64 compiler flag, it
Thomas Heller [Tue, 14 Mar 2006 20:22:47 +0000 (20:22 +0000)]
For x86 Release and Debug builds, remove the /Wp64 compiler flag, it
is responsible for most (all?)  of the warnings we get.

18 years agoIntegrate patch from Neal Norwitz. He writes:
Thomas Heller [Tue, 14 Mar 2006 19:53:09 +0000 (19:53 +0000)]
Integrate patch from Neal Norwitz.  He writes:

"""
The attached patch fixes all the ctypes tests so they pass on amd64.
It also fixes several warnings.  I'm not sure what else to do with the
patch.  Let me know how you want to handle these in the future.

I'm not sure the patch is 100% correct.  You will need to decide what
can be 64 bits and what can't.  I believe
sq_{item,slice,ass_item,ass_slice} all need to use Py_ssize_t.  The
types in ctypes.h may not require all the changes I made.  I don't
know how you want to support older version, so I unconditionally
changed the types to Py_ssize_t.
"""

The patch is also in the ctypes SVN repository now, after small
changes to add compatibility with older Python versions.

18 years agoTeach the compiler module about augmented assignment to tuple subscripts
Nick Coghlan [Tue, 14 Mar 2006 13:21:14 +0000 (13:21 +0000)]
Teach the compiler module about augmented assignment to tuple subscripts

19 years agoFix and test (manually w/xx module) passing NULLs to PyObject_Str() and
Neal Norwitz [Tue, 14 Mar 2006 06:02:16 +0000 (06:02 +0000)]
Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and
PyObject_Unicode().  This problem was originally reported from Coverity
and addresses mail on python-dev "checkin r43015".

This inlines the conversion of the string to unicode and cleans
up/simplifies some code at the end of the PyObject_Unicode().

We really need a complete C API test module for all public APIs
and passing good and bad parameter values.

Will backport.

19 years agoFix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact
Georg Brandl [Mon, 13 Mar 2006 22:22:11 +0000 (22:22 +0000)]
Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact

19 years agoAdded logThreads and logProcesses to allow conditional omission of logging this infor...
Vinay Sajip [Mon, 13 Mar 2006 22:05:28 +0000 (22:05 +0000)]
Added logThreads and logProcesses to allow conditional omission of logging this information

19 years agoIt's necessary to do a Debug build of the bsddb project too.
Tim Peters [Mon, 13 Mar 2006 20:09:32 +0000 (20:09 +0000)]
It's necessary to do a Debug build of the bsddb project too.

19 years agoMinor changes.
Tim Peters [Mon, 13 Mar 2006 19:43:34 +0000 (19:43 +0000)]
Minor changes.

19 years agoTrimmed trailing whitespace.
Tim Peters [Mon, 13 Mar 2006 19:35:53 +0000 (19:35 +0000)]
Trimmed trailing whitespace.

19 years agoFix build process of bsddb for IA64 and AMD64.
Martin v. Löwis [Mon, 13 Mar 2006 15:37:40 +0000 (15:37 +0000)]
Fix build process of bsddb for IA64 and AMD64.
Remove remarks on size_t problems.

19 years agoInitialize VS environment in external.bat as well.
Martin v. Löwis [Mon, 13 Mar 2006 14:12:47 +0000 (14:12 +0000)]
Initialize VS environment in external.bat as well.

19 years agoUpdate to bsddb 4.4.20.
Martin v. Löwis [Mon, 13 Mar 2006 13:48:05 +0000 (13:48 +0000)]
Update to bsddb 4.4.20.

19 years agoFix SF bug #1448804 and ad a test to ensure that all subscript operations continue...
Nick Coghlan [Mon, 13 Mar 2006 12:31:58 +0000 (12:31 +0000)]
Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly

19 years agoLet the buildbot make a single pass in the test suite only.
Martin v. Löwis [Mon, 13 Mar 2006 10:59:32 +0000 (10:59 +0000)]
Let the buildbot make a single pass in the test suite only.

19 years agoUpdate to bzip2 1.0.3
Martin v. Löwis [Mon, 13 Mar 2006 10:52:04 +0000 (10:52 +0000)]
Update to bzip2 1.0.3
Make buildbot slaves automatically fetch bzip2 1.0.3.

19 years agoPlug some refcount leaks when tests are run repeatedly.
Thomas Heller [Mon, 13 Mar 2006 10:47:02 +0000 (10:47 +0000)]
Plug some refcount leaks when tests are run repeatedly.