]> granicus.if.org Git - python/log
python
18 years agoMerge with trunk up to revision 45620.
Thomas Wouters [Fri, 21 Apr 2006 16:44:05 +0000 (16:44 +0000)]
Merge with trunk up to revision 45620.

18 years agoAdd empty __init__ methods for stateful multibytecodec instances.
Hye-Shik Chang [Fri, 21 Apr 2006 16:21:44 +0000 (16:21 +0000)]
Add empty __init__ methods for stateful multibytecodec instances.
This resolves a problem found by Thomas Wouters:
http://mail.python.org/pipermail/python-dev/2006-April/064051.html

18 years agoFix test_scriptpackage with pure will power.
Guido van Rossum [Fri, 21 Apr 2006 15:44:20 +0000 (15:44 +0000)]
Fix test_scriptpackage with pure will power.
I really don't know why I bother; these are all generated files.
But I don't recall how to regenerate them nor how to fix the generator.

The hardest part was fixing two mutual recursive imports;
somehow changing "import foo" into "from . import foo" where
foo and bar import each other AND both are imported from __init__.py
caused things to break.  Bah.

18 years agoCommit regenerated Python-ast.c.
Thomas Wouters [Fri, 21 Apr 2006 14:02:59 +0000 (14:02 +0000)]
Commit regenerated Python-ast.c.

18 years agoFix relative import. This fixes test_sax.py.
Guido van Rossum [Fri, 21 Apr 2006 13:52:56 +0000 (13:52 +0000)]
Fix relative import.  This fixes test_sax.py.

18 years agoFix the unit tests by adding dispatch tables for DateTime and Binary.
Guido van Rossum [Fri, 21 Apr 2006 13:45:00 +0000 (13:45 +0000)]
Fix the unit tests by adding dispatch tables for DateTime and Binary.
I'm not convinced this is the right thing to do...  InstanceType makes no sense any longer.

18 years agoFix newly merged test for p3ykness.
Thomas Wouters [Fri, 21 Apr 2006 11:36:13 +0000 (11:36 +0000)]
Fix newly merged test for p3ykness.

18 years agoFix merge glitch.
Thomas Wouters [Fri, 21 Apr 2006 11:30:52 +0000 (11:30 +0000)]
Fix merge glitch.

18 years agoMerge trunk up to 45598.
Thomas Wouters [Fri, 21 Apr 2006 11:28:17 +0000 (11:28 +0000)]
Merge trunk up to 45598.

18 years agoMerge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters [Fri, 21 Apr 2006 10:40:58 +0000 (10:40 +0000)]
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
number of tests, all because of the codecs/_multibytecodecs issue described
here (it's not a Py3K issue, just something Py3K discovers):
http://mail.python.org/pipermail/python-dev/2006-April/064051.html

Hye-Shik Chang promised to look for a fix, so no need to fix it here. The
tests that are expected to break are:

test_codecencodings_cn
test_codecencodings_hk
test_codecencodings_jp
test_codecencodings_kr
test_codecencodings_tw
test_codecs
test_multibytecodec

This merge fixes an actual test failure (test_weakref) in this branch,
though, so I believe merging is the right thing to do anyway.

18 years agoMerge trunk up to 43069, putting re.py back and hopefully making the branch
Thomas Wouters [Fri, 21 Apr 2006 09:47:09 +0000 (09:47 +0000)]
Merge trunk up to 43069, putting re.py back and hopefully making the branch
usable again.

18 years agoMerge trunk's 43068, deleting re.py. This leaves the branch in a broken
Thomas Wouters [Fri, 21 Apr 2006 09:46:12 +0000 (09:46 +0000)]
Merge trunk's 43068, deleting re.py. This leaves the branch in a broken
state (unless you happen to have a re.pyc lying around), but it'll be fixed
in the next merge.

18 years agoMerge part of the trunk changes into the p3yk branch. This merges from 43030
Thomas Wouters [Fri, 21 Apr 2006 09:43:23 +0000 (09:43 +0000)]
Merge part of the trunk changes into the p3yk branch. This merges from 43030
(branch-creation time) up to 43067. 43068 and 43069 contain a little
swapping action between re.py and sre.py, and this mightily confuses svn
merge, so later changes are going in separately.

This merge should break no additional tests.

The last-merged revision is going in a 'last_merge' property on '.' (the
branch directory.) Arbitrarily chosen, really; if there's a BCP for this, I
couldn't find it, but we can easily change it afterwards ;)

18 years agoFix the problems in this test. Boy this is a painful thing to debug --
Guido van Rossum [Fri, 21 Apr 2006 09:17:15 +0000 (09:17 +0000)]
Fix the problems in this test.  Boy this is a painful thing to debug --
it's fundamentally unmaintainable.  Should we throw away pyclbr, or rewrite
it using the AST?

18 years agoFix (and add test for) missing check for BaseException subclasses in the C
Thomas Wouters [Thu, 20 Apr 2006 22:42:37 +0000 (22:42 +0000)]
Fix (and add test for) missing check for BaseException subclasses in the C
API.

18 years agoFix typical truedivision problem (using the result of division as an index.)
Thomas Wouters [Thu, 20 Apr 2006 22:36:57 +0000 (22:36 +0000)]
Fix typical truedivision problem (using the result of division as an index.)

18 years agoFix test failures for repr.py.
Guido van Rossum [Thu, 20 Apr 2006 16:07:39 +0000 (16:07 +0000)]
Fix test failures for repr.py.
But shouldn't we kill this module?  How many pprint clones do we need?

18 years agoUse explicit relative import for an, ehm, relative import.
Thomas Wouters [Tue, 18 Apr 2006 21:41:36 +0000 (21:41 +0000)]
Use explicit relative import for an, ehm, relative import.

18 years agoFix the expected output file; new classes just behave differently...
Guido van Rossum [Mon, 17 Apr 2006 23:38:13 +0000 (23:38 +0000)]
Fix the expected output file; new classes just behave differently...
(There are some other problems with test_class.py that aren't as
easily fixed. :-( )

18 years agoFix two errors that prevented "make libinstall" from working:
Guido van Rossum [Mon, 17 Apr 2006 23:13:00 +0000 (23:13 +0000)]
Fix two errors that prevented "make libinstall" from working:
- a line indented with tabs;
- a function named 'as'.

18 years agoFix xrange tests now that xrange() (like many other places) no longer
Thomas Wouters [Mon, 17 Apr 2006 13:16:50 +0000 (13:16 +0000)]
Fix xrange tests now that xrange() (like many other places) no longer
silently converts floats to integers when expecting integer values.

18 years agoMention how __coerce__ has been removed.
Brett Cannon [Sat, 15 Apr 2006 09:35:38 +0000 (09:35 +0000)]
Mention how __coerce__ has been removed.

18 years agoMake test_class work (but still fail) even though class.__dict__ is now a
Thomas Wouters [Sat, 15 Apr 2006 09:19:16 +0000 (09:19 +0000)]
Make test_class work (but still fail) even though class.__dict__ is now a
'dictproxy' (which is a read-only non-dict mapping type that can't be passed
to exec.)

The failures the test finds are behavioural differences between old- and
new-style classes that may or may not be intended.

18 years agoAdjust test_enumerate to accomodate for iter() blowing up sooner than
Thomas Wouters [Sat, 15 Apr 2006 09:16:16 +0000 (09:16 +0000)]
Adjust test_enumerate to accomodate for iter() blowing up sooner than
expected, when dealing with new-style broken-iterators.

18 years agoFix tests for PyArg_Parse*; The PyArg_Parse functions no longer (noisily)
Thomas Wouters [Sat, 15 Apr 2006 09:15:11 +0000 (09:15 +0000)]
Fix tests for PyArg_Parse*; The PyArg_Parse functions no longer (noisily)
convert float arguments to integer-taking format characters, so fix the test
to expect the failure.

18 years ago - Remove tests for classic class behaviour
Thomas Wouters [Sat, 15 Apr 2006 09:13:19 +0000 (09:13 +0000)]
 - Remove tests for classic class behaviour
 - Expect a new-style class tree in the getclasstree test.

18 years agoFix test_bisect in the same way as test_itertools: iter() blows up a lot
Thomas Wouters [Sat, 15 Apr 2006 09:12:14 +0000 (09:12 +0000)]
Fix test_bisect in the same way as test_itertools: iter() blows up a lot
sooner for new-style broken-iterators, expect it to.

18 years agoFix the superficial augmented-assignment tests to deal with true division.
Thomas Wouters [Sat, 15 Apr 2006 09:10:43 +0000 (09:10 +0000)]
Fix the superficial augmented-assignment tests to deal with true division.
Add (equally superficial) >>=/<<= test in the process. Relies on floats that
should be extremely close to the int '6' printing as '6.0', but I believe
that's a valid assumption ;P

18 years agoFix tests that were trying to make iteration blow up, on broken iterators.
Thomas Wouters [Sat, 15 Apr 2006 09:07:20 +0000 (09:07 +0000)]
Fix tests that were trying to make iteration blow up, on broken iterators.
Since the broken iterators are now new-style classes, iter() was able to do
the valid-iterator check sooner (on instantiation instead of on first call),
making the tests blow up sooner than expected.

18 years agoRemove tests for classic-class and mixed-classic-class/new-style behaviour.
Thomas Wouters [Sat, 15 Apr 2006 09:04:57 +0000 (09:04 +0000)]
Remove tests for classic-class and mixed-classic-class/new-style behaviour.
(New-style class behaviour was already thoroughly tested)

18 years ago - Fix doctest results to account for classes being new-style, and thus
Thomas Wouters [Sat, 15 Apr 2006 09:03:16 +0000 (09:03 +0000)]
 - Fix doctest results to account for classes being new-style, and thus
   printing differently.
 - Fix doctest for classic-class behaviour, make it test new-style behaviour
   on an implicitly-new-style class instead.

18 years agoMake 'python -tt' the default, meaning Python won't allow mixing tabs and
Thomas Wouters [Fri, 14 Apr 2006 11:33:28 +0000 (11:33 +0000)]
Make 'python -tt' the default, meaning Python won't allow mixing tabs and
spaces for indentation. Adds a '-ttt' option to turn the errors back into
warnings; I'm not yet sure whether that's desireable for Py3K.

Also remove the magic for setting the size of tabs based on emacs/vim-style
comments. Python now always considers tabstops to be every-8-spaces.

18 years agoFix the version number to be 3.0.
Guido van Rossum [Thu, 30 Mar 2006 16:19:24 +0000 (16:19 +0000)]
Fix the version number to be 3.0.

18 years agoUse absolute import. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 08:57:54 +0000 (08:57 +0000)]
Use absolute import.  (Should this go into 2.5?)

18 years agoGet rid of remnants of integer division
Neal Norwitz [Fri, 24 Mar 2006 08:14:36 +0000 (08:14 +0000)]
Get rid of remnants of integer division

18 years agoString exceptions are gone and so are classic classes.
Neal Norwitz [Fri, 24 Mar 2006 08:08:49 +0000 (08:08 +0000)]
String exceptions are gone and so are classic classes.

18 years agoUse *absolute* imports now that they are required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 08:04:47 +0000 (08:04 +0000)]
Use *absolute* imports now that they are required.  (Should this go into 2.5?)

18 years agoMust inherit from Exception now.
Neal Norwitz [Fri, 24 Mar 2006 08:02:35 +0000 (08:02 +0000)]
Must inherit from Exception now.

18 years agoUse *absolute* imports now that they are required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 07:47:46 +0000 (07:47 +0000)]
Use *absolute* imports now that they are required.  (Should this go into 2.5?)

18 years agoUse *absolute* import now that it is required. (Should this go into 2.5? Hopefully...
Neal Norwitz [Fri, 24 Mar 2006 07:38:37 +0000 (07:38 +0000)]
Use *absolute* import now that it is required.  (Should this go into 2.5?  Hopefully not the bogus comment about using relative imports.  That was just to see if anyone was paying attention.)

18 years agoUse relative import now that it is required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 07:35:29 +0000 (07:35 +0000)]
Use relative import now that it is required.  (Should this go into 2.5?)

18 years agoUse relative import now that it is required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 07:10:31 +0000 (07:10 +0000)]
Use relative import now that it is required.  (Should this go into 2.5?)

18 years agoOk, compiler.transformer can really be imported now
Neal Norwitz [Fri, 24 Mar 2006 07:07:34 +0000 (07:07 +0000)]
Ok, compiler.transformer can really be imported now

18 years agoMust inherit from Exception now.
Neal Norwitz [Fri, 24 Mar 2006 07:02:16 +0000 (07:02 +0000)]
Must inherit from Exception now.

18 years agoUse relative import now that it is required. (Should this go into 2.5?)
Neal Norwitz [Fri, 24 Mar 2006 06:59:24 +0000 (06:59 +0000)]
Use relative import now that it is required.  (Should this go into 2.5?)

18 years agoUse relative imports in compiler package now that it is required. (Should this go...
Neal Norwitz [Fri, 24 Mar 2006 06:57:41 +0000 (06:57 +0000)]
Use relative imports in compiler package now that it is required.  (Should this go into 2.5 or should we do compiler.XXX?)

18 years agoRemove another use of as as a keyword
Neal Norwitz [Wed, 22 Mar 2006 09:34:44 +0000 (09:34 +0000)]
Remove another use of as as a keyword

18 years agoFinish getting rid of statichere/staticforward
Neal Norwitz [Wed, 22 Mar 2006 09:28:35 +0000 (09:28 +0000)]
Finish getting rid of statichere/staticforward

18 years agoGet doctest to pass. The problem was int/int -> float now. There
Neal Norwitz [Wed, 22 Mar 2006 09:20:30 +0000 (09:20 +0000)]
Get doctest to pass.  The problem was int/int -> float now.  There
were some cases where an int was assumed.

Also had to change the string of the exception when dividing and int by zero.
Not sure what the best error message should be.  Currently
  5 / 0 yields the message: ZeroDivisionError: float division

That isn't entirely correct.  But I'm not sure what else to do.

18 years agoRemove staticforward and statichere
Neal Norwitz [Wed, 22 Mar 2006 07:18:02 +0000 (07:18 +0000)]
Remove staticforward and statichere

18 years agoDamn another occurrence of using as as a keywordf
Neal Norwitz [Wed, 22 Mar 2006 07:12:41 +0000 (07:12 +0000)]
Damn another occurrence of using as as a keywordf

18 years agoremove test file
Barry Warsaw [Tue, 21 Mar 2006 19:47:07 +0000 (19:47 +0000)]
remove test file

18 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 19:35:05 +0000 (19:35 +0000)]
testing svn emails

18 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 19:21:14 +0000 (19:21 +0000)]
testing svn emails

18 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:29:19 +0000 (18:29 +0000)]
testing svn emails

18 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:21:43 +0000 (18:21 +0000)]
testing svn emails

18 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:18:20 +0000 (18:18 +0000)]
testing svn emails

18 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:13:08 +0000 (18:13 +0000)]
testing svn emails

18 years agotesting svn emails
Barry Warsaw [Tue, 21 Mar 2006 18:05:50 +0000 (18:05 +0000)]
testing svn emails

18 years agoSome more TODO items of things I'd like to start with.
Guido van Rossum [Mon, 20 Mar 2006 04:35:06 +0000 (04:35 +0000)]
Some more TODO items of things I'd like to start with.
Mention the builtins that Neal killed.

18 years agoRemove PyArg_NoArgs() and PyArg_GetInt()
Neal Norwitz [Fri, 17 Mar 2006 09:00:00 +0000 (09:00 +0000)]
Remove PyArg_NoArgs() and PyArg_GetInt()

18 years agoINPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).
Neal Norwitz [Fri, 17 Mar 2006 08:59:09 +0000 (08:59 +0000)]
INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).

18 years ago_Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer
Neal Norwitz [Fri, 17 Mar 2006 08:57:43 +0000 (08:57 +0000)]
_Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer

18 years agoas is a keyword now :-)
Neal Norwitz [Fri, 17 Mar 2006 08:54:15 +0000 (08:54 +0000)]
as is a keyword now :-)

18 years agoGet rid of xreadlines() (methods).
Neal Norwitz [Fri, 17 Mar 2006 08:29:44 +0000 (08:29 +0000)]
Get rid of xreadlines() (methods).

18 years agoMore apply() cleanup
Neal Norwitz [Fri, 17 Mar 2006 08:28:24 +0000 (08:28 +0000)]
More apply() cleanup

18 years agoThis gets at least test_cmd_line working again and a few more modules built.
Neal Norwitz [Fri, 17 Mar 2006 08:27:50 +0000 (08:27 +0000)]
This gets at least test_cmd_line working again and a few more modules built.

18 years agoRemove some old types for int based functions (Py_ssize_t is da thing now.)
Neal Norwitz [Fri, 17 Mar 2006 08:09:39 +0000 (08:09 +0000)]
Remove some old types for int based functions (Py_ssize_t is da thing now.)

18 years agoRemove apply()
Neal Norwitz [Fri, 17 Mar 2006 08:04:59 +0000 (08:04 +0000)]
Remove apply()

18 years agoRemove apply()
Neal Norwitz [Fri, 17 Mar 2006 08:00:19 +0000 (08:00 +0000)]
Remove apply()

18 years agoWhitespace changes. Also remove apply from a few comments
Neal Norwitz [Fri, 17 Mar 2006 06:58:45 +0000 (06:58 +0000)]
Whitespace changes.  Also remove apply from a few comments

18 years agoGet rid of a bunch more raw_input references
Neal Norwitz [Fri, 17 Mar 2006 06:49:51 +0000 (06:49 +0000)]
Get rid of a bunch more raw_input references

18 years agoWhoops, input *and* raw_input are slated for removal, and now both are gone.
Neal Norwitz [Fri, 17 Mar 2006 06:04:34 +0000 (06:04 +0000)]
Whoops, input *and* raw_input are slated for removal, and now both are gone.

18 years agoraw_input() -> input(). old input behavior is history (and test_builtin passes again...
Neal Norwitz [Fri, 17 Mar 2006 05:59:16 +0000 (05:59 +0000)]
raw_input() -> input().  old input behavior is history (and test_builtin passes again).  It was failing due to future division.

18 years agoRemove sys.exc_type, sys.exc_value, sys.exc_traceback
Neal Norwitz [Fri, 17 Mar 2006 05:49:33 +0000 (05:49 +0000)]
Remove sys.exc_type, sys.exc_value, sys.exc_traceback

18 years agoGet rid of compiler warning
Neal Norwitz [Fri, 17 Mar 2006 05:44:46 +0000 (05:44 +0000)]
Get rid of compiler warning

18 years agoGet rid of last vestiges of BINARY_DIVIDE.
Neal Norwitz [Thu, 16 Mar 2006 06:02:10 +0000 (06:02 +0000)]
Get rid of last vestiges of BINARY_DIVIDE.

18 years agoGet rid of compiler warning about with_msg and as_msg being unused
Neal Norwitz [Thu, 16 Mar 2006 06:01:25 +0000 (06:01 +0000)]
Get rid of compiler warning about with_msg and as_msg being unused

18 years agoCheckpoint. 218 tests are okay; 53 are failing. Done so far:
Guido van Rossum [Wed, 15 Mar 2006 04:58:47 +0000 (04:58 +0000)]
Checkpoint.  218 tests are okay; 53 are failing.  Done so far:
- all classes are new-style (but ripping out classobject.[ch] isn't done)
- int/int -> float
- all exceptions must derive from BaseException
- absolute import
- 'as' and 'with' are keywords

18 years agoCreate a Python 3000 branch.
Guido van Rossum [Tue, 14 Mar 2006 22:22:15 +0000 (22:22 +0000)]
Create a Python 3000 branch.

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

18 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.

18 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

18 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

18 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.

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

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

18 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.

18 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.

18 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.

18 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

18 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.

18 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.

18 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.

18 years agoBug #1448490: Fix a bug that ISO-2022 codecs could not handle
Hye-Shik Chang [Mon, 13 Mar 2006 10:20:08 +0000 (10:20 +0000)]
Bug #1448490: Fix a bug that ISO-2022 codecs could not handle
SS2 (single-shift 2) escape sequences correctly.

18 years agoRemove the slightly broken test_leaks.py.
Thomas Heller [Mon, 13 Mar 2006 07:33:38 +0000 (07:33 +0000)]
Remove the slightly broken test_leaks.py.

Change test_functions.py so that it can be run multiple time without
failing: Assign a restype to the function in test_intresult, and move
the definition of class POINT to module level so that no new class is
created each time the test is run.