]> granicus.if.org Git - python/log
python
18 years agoUpdate Misc/NEWS for gzip patch #1281707
Bob Ippolito [Tue, 23 May 2006 18:41:17 +0000 (18:41 +0000)]
Update Misc/NEWS for gzip patch #1281707

18 years agofix broken merge
Richard Jones [Tue, 23 May 2006 18:32:11 +0000 (18:32 +0000)]
fix broken merge

18 years agoApplied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.
Richard Jones [Tue, 23 May 2006 18:28:17 +0000 (18:28 +0000)]
Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.

18 years agoAn improved script for building the binary distribution on MacOSX.
Ronald Oussoren [Tue, 23 May 2006 15:09:57 +0000 (15:09 +0000)]
An improved script for building the binary distribution on MacOSX.

18 years agoUse 'speed' instead of 'performance', because I agree with the argument
Andrew M. Kuchling [Tue, 23 May 2006 12:49:35 +0000 (12:49 +0000)]
Use 'speed' instead of 'performance', because I agree with the argument
at http://zestyping.livejournal.com/193260.html that 'erformance' really means
something more general.

18 years agoMention string improvements
Andrew M. Kuchling [Tue, 23 May 2006 12:47:01 +0000 (12:47 +0000)]
Mention string improvements

18 years agoAdd some items; mention the sprint
Andrew M. Kuchling [Tue, 23 May 2006 12:44:36 +0000 (12:44 +0000)]
Add some items; mention the sprint

18 years agoPatch #1488098.
Ronald Oussoren [Tue, 23 May 2006 12:01:11 +0000 (12:01 +0000)]
Patch #1488098.

This patchs makes it possible to create a universal build on OSX 10.4 and use
the result to build extensions on 10.3. It also makes it possible to override
the '-arch' and '-isysroot' compiler arguments for specific extensions.

18 years agoDisable linking extensions with -lpython2.5 for darwin. This should fix bug
Ronald Oussoren [Tue, 23 May 2006 11:47:16 +0000 (11:47 +0000)]
Disable linking extensions with -lpython2.5 for darwin. This should fix bug
#1487105.

18 years agoPyErr_NewException now accepts a tuple of base classes as its
Georg Brandl [Tue, 23 May 2006 11:17:21 +0000 (11:17 +0000)]
PyErr_NewException now accepts a tuple of base classes as its
"base" parameter.

18 years agoAvoid creating a mess when installing a framework for the second time.
Ronald Oussoren [Tue, 23 May 2006 11:04:24 +0000 (11:04 +0000)]
Avoid creating a mess when installing a framework for the second time.

18 years agoMerge from rjones-funccall branch.
Richard Jones [Tue, 23 May 2006 10:37:38 +0000 (10:37 +0000)]
Merge from rjones-funccall branch.

Applied patch zombie-frames-2.diff from sf patch 876206 with updates for
Python 2.5 and also modified to retain the free_list to avoid the 67%
slow-down in pybench recursion test. 5% speed up in function call pybench.

18 years agoneedforspeed: fixed unicode "in" operator to use same implementation
Fredrik Lundh [Tue, 23 May 2006 10:12:21 +0000 (10:12 +0000)]
needforspeed: fixed unicode "in" operator to use same implementation
approach as find/index

18 years agoneedforspeed: check first *and* last character before doing a full memcmp
Fredrik Lundh [Tue, 23 May 2006 10:10:57 +0000 (10:10 +0000)]
needforspeed: check first *and* last character before doing a full memcmp

18 years agounicode_repeat(): Change type of local to Py_ssize_t,
Tim Peters [Tue, 23 May 2006 05:47:16 +0000 (05:47 +0000)]
unicode_repeat():  Change type of local to Py_ssize_t,
since that's what it should be.

18 years agoPyUnicode_Join(): Recent code changes introduced new
Tim Peters [Mon, 22 May 2006 19:17:04 +0000 (19:17 +0000)]
PyUnicode_Join():  Recent code changes introduced new
compiler warnings on Windows (signed vs unsigned mismatch
in comparisons).  Cleaned that up by switching more locals
to Py_ssize_t.  Simplified overflow checking (it can _be_
simpler because while these things are declared as
Py_ssize_t, then should in fact never be negative).

18 years agoneedforspeed: use memcpy for "long" strings; use a better algorithm
Fredrik Lundh [Mon, 22 May 2006 17:12:58 +0000 (17:12 +0000)]
needforspeed: use memcpy for "long" strings; use a better algorithm
for long repeats.

18 years agoneedforspeed: speed up unicode repeat, unicode string copy
Fredrik Lundh [Mon, 22 May 2006 16:29:30 +0000 (16:29 +0000)]
needforspeed: speed up unicode repeat, unicode string copy

18 years agoApply revised patch for GzipFile.readline performance #1281707
Bob Ippolito [Mon, 22 May 2006 15:59:12 +0000 (15:59 +0000)]
Apply revised patch for GzipFile.readline performance #1281707

18 years agodocstring tweaks: count counts non-overlapping substrings, not
Fredrik Lundh [Mon, 22 May 2006 15:35:12 +0000 (15:35 +0000)]
docstring tweaks: count counts non-overlapping substrings, not
total number of occurences

18 years agoRevert gzip readline performance patch #1281707 until a more generic performance...
Bob Ippolito [Mon, 22 May 2006 15:22:46 +0000 (15:22 +0000)]
Revert gzip readline performance patch #1281707 until a more generic performance improvement can be found

18 years agoGzipFile.readline performance improvement (~30-40%), patch #1281707
Bob Ippolito [Mon, 22 May 2006 14:31:24 +0000 (14:31 +0000)]
GzipFile.readline performance improvement (~30-40%), patch #1281707

18 years agoDefine SIZEOF_{DOUBLE,FLOAT} on Windows. Else
Tim Peters [Mon, 22 May 2006 11:29:41 +0000 (11:29 +0000)]
Define SIZEOF_{DOUBLE,FLOAT} on Windows.  Else
Michael Hudson's nice gimmicks for IEEE special
values (infinities, NaNs) don't work.

18 years agoPatch #1492356: Port to Windows CE (patch set 1).
Martin v. Löwis [Mon, 22 May 2006 09:15:18 +0000 (09:15 +0000)]
Patch #1492356: Port to Windows CE (patch set 1).

18 years agoPatch 1490384: New Icons for the PC build.
Martin v. Löwis [Mon, 22 May 2006 08:48:14 +0000 (08:48 +0000)]
Patch 1490384: New Icons for the PC build.

18 years agoApply patch #1492255 from Mike Foord.
George Yoshida [Sun, 21 May 2006 04:40:32 +0000 (04:40 +0000)]
Apply patch #1492255 from Mike Foord.

18 years agoFix the TeX compile error.
George Yoshida [Sun, 21 May 2006 04:22:59 +0000 (04:22 +0000)]
Fix the TeX compile error.

18 years agoMinor edits
Andrew M. Kuchling [Sat, 20 May 2006 19:25:16 +0000 (19:25 +0000)]
Minor edits

18 years agoApply patch #1492147 from Mike Foord.
George Yoshida [Sat, 20 May 2006 18:07:26 +0000 (18:07 +0000)]
Apply patch #1492147 from Mike Foord.

18 years ago- Add 'as' and 'with' as new keywords in 2.5.
George Yoshida [Sat, 20 May 2006 16:29:14 +0000 (16:29 +0000)]
- Add 'as' and 'with' as new keywords in 2.5.
- Regenerate keyword lists with reswords.py.

18 years ago- markup fix
George Yoshida [Sat, 20 May 2006 15:36:19 +0000 (15:36 +0000)]
- markup fix
- add clarifying words

18 years agoFix bug #1000914 (again).
Ronald Oussoren [Sat, 20 May 2006 06:17:01 +0000 (06:17 +0000)]
Fix bug #1000914 (again).

This patches a file that is generated by bgen, however the code is now the
same as a current copy of bgen would generate.  Without this patch most types
in the Carbon.CF module are unusable.

I haven't managed to coax bgen into generating a complete copy of _CFmodule.c
yet :-(, hence the manual patching.

18 years agoWhitespace normalization.
Tim Peters [Fri, 19 May 2006 19:16:34 +0000 (19:16 +0000)]
Whitespace normalization.

18 years ago* Change working directory to the users home
Ronald Oussoren [Fri, 19 May 2006 18:17:31 +0000 (18:17 +0000)]
* Change working directory to the users home
  directory, that makes the file open/save
  dialogs more useable.
* Don't use argv emulator, its not needed
  for idle.

18 years agoOops, I forgot to include this file in the last commit (46046):
Neal Norwitz [Fri, 19 May 2006 07:05:01 +0000 (07:05 +0000)]
Oops, I forgot to include this file in the last commit (46046):

Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.

I suppose this could be backported if anyone cares.

18 years agoBug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.
Neal Norwitz [Fri, 19 May 2006 07:00:58 +0000 (07:00 +0000)]
Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64.

I suppose this could be backported if anyone cares.

18 years agoFix #1474677, non-keyword argument following keyword.
Neal Norwitz [Fri, 19 May 2006 06:43:50 +0000 (06:43 +0000)]
Fix #1474677, non-keyword argument following keyword.

18 years agoFix #132 from Coverity, retval could have been derefed
Neal Norwitz [Fri, 19 May 2006 06:31:23 +0000 (06:31 +0000)]
Fix #132 from Coverity, retval could have been derefed
if a continue inside a try failed.

18 years agoTypo fix; add clarifying word
Andrew M. Kuchling [Fri, 19 May 2006 00:03:55 +0000 (00:03 +0000)]
Typo fix; add clarifying word

18 years agoFix some minor issues with the generated application bundles on MacOSX
Ronald Oussoren [Thu, 18 May 2006 09:04:15 +0000 (09:04 +0000)]
Fix some minor issues with the generated application bundles on MacOSX

18 years agoChanged status from "beta" to "production"; since logging has been part of the stdlib...
Vinay Sajip [Thu, 18 May 2006 07:28:58 +0000 (07:28 +0000)]
Changed status from "beta" to "production"; since logging has been part of the stdlib since 2.3, it should be safe to make this assertion ;-)

18 years agoBug #1490688: properly document %e, %f, %g format subtleties.
Georg Brandl [Thu, 18 May 2006 07:20:05 +0000 (07:20 +0000)]
Bug #1490688: properly document %e, %f, %g format subtleties.

18 years agoBug #1462152: file() now checks more thoroughly for invalid mode
Georg Brandl [Thu, 18 May 2006 07:01:27 +0000 (07:01 +0000)]
Bug #1462152: file() now checks more thoroughly for invalid mode
strings and removes a possible "U" before passing the mode to the
C library function.

18 years agoLittle cleanup
Neal Norwitz [Thu, 18 May 2006 06:51:46 +0000 (06:51 +0000)]
Little cleanup

18 years agoFix test_locale for platforms without a default thousands separator.
Georg Brandl [Thu, 18 May 2006 06:33:27 +0000 (06:33 +0000)]
Fix test_locale for platforms without a default thousands separator.

18 years agoRemove unused import.
Georg Brandl [Thu, 18 May 2006 06:18:06 +0000 (06:18 +0000)]
Remove unused import.

18 years agoAmendments to patch #1484695.
Georg Brandl [Thu, 18 May 2006 06:11:19 +0000 (06:11 +0000)]
Amendments to patch #1484695.

18 years agoWhitespace normalization.
Tim Peters [Thu, 18 May 2006 02:06:40 +0000 (02:06 +0000)]
Whitespace normalization.

18 years agoPatch #1180296: improve locale string formatting functions
Georg Brandl [Wed, 17 May 2006 15:51:16 +0000 (15:51 +0000)]
Patch #1180296: improve locale string formatting functions

18 years agoDelay-import some large modules to speed up urllib2 import.
Georg Brandl [Wed, 17 May 2006 15:17:00 +0000 (15:17 +0000)]
Delay-import some large modules to speed up urllib2 import.
(fixes #1484793).

18 years agoPatch #1486962: Several bugs in the turtle Tk demo module were fixed
Georg Brandl [Wed, 17 May 2006 14:56:04 +0000 (14:56 +0000)]
Patch #1486962: Several bugs in the turtle Tk demo module were fixed
and several features added, such as speed and geometry control.

18 years agoAdd global debug flag to cookielib to avoid heavy dependency on the logging module.
Georg Brandl [Wed, 17 May 2006 14:45:06 +0000 (14:45 +0000)]
Add global debug flag to cookielib to avoid heavy dependency on the logging module.
Resolves #1484758.

18 years agoPatch #1490224: set time.altzone correctly on Cygwin.
Georg Brandl [Wed, 17 May 2006 14:26:50 +0000 (14:26 +0000)]
Patch #1490224: set time.altzone correctly on Cygwin.

18 years agoFix typo in os.utime docstring (patch #1490189)
Georg Brandl [Wed, 17 May 2006 14:18:20 +0000 (14:18 +0000)]
Fix typo in os.utime docstring (patch #1490189)

18 years agoApply patch #1489784 from Michael Foord.
Georg Brandl [Wed, 17 May 2006 14:11:36 +0000 (14:11 +0000)]
Apply patch #1489784 from Michael Foord.

18 years agoRemove misleading comment about type-class unification.
Georg Brandl [Wed, 17 May 2006 14:06:07 +0000 (14:06 +0000)]
Remove misleading comment about type-class unification.

18 years agoPyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path.
Tim Peters [Wed, 17 May 2006 01:30:11 +0000 (01:30 +0000)]
PyZlib_copy(), PyZlib_uncopy():  Repair leaks on the normal-case path.

18 years agoText files missing the SVN eol-style property.
Tim Peters [Tue, 16 May 2006 23:24:08 +0000 (23:24 +0000)]
Text files missing the SVN eol-style property.

18 years agoWhitespace normalization.
Tim Peters [Tue, 16 May 2006 23:22:20 +0000 (23:22 +0000)]
Whitespace normalization.

18 years agoDocument ImportWarning
George Yoshida [Tue, 16 May 2006 18:26:10 +0000 (18:26 +0000)]
Document ImportWarning

18 years agoMention that Exception is now a subclass of BaseException.
George Yoshida [Tue, 16 May 2006 18:07:00 +0000 (18:07 +0000)]
Mention that Exception is now a subclass of BaseException.
Remove a sentence that says that BaseException inherits from BaseException.
(I guess this is just a copy & paste mistake.)

18 years agoUpdate for 'ImportWarning'
George Yoshida [Tue, 16 May 2006 17:42:16 +0000 (17:42 +0000)]
Update for 'ImportWarning'

18 years agoPEP 243 has been withdrawn, so don't refer to it any more.
Andrew M. Kuchling [Tue, 16 May 2006 16:27:31 +0000 (16:27 +0000)]
PEP 243 has been withdrawn, so don't refer to it any more.
The PyPI upload material has been moved into the section on PEP314.

18 years agoAdd item
Andrew M. Kuchling [Tue, 16 May 2006 16:11:54 +0000 (16:11 +0000)]
Add item

18 years agoPatch #1435422: zlib's compress and decompress objects now have a
Georg Brandl [Tue, 16 May 2006 07:38:27 +0000 (07:38 +0000)]
Patch #1435422: zlib's compress and decompress objects now have a
copy() method.

18 years ago- Test for sys/statvfs.h before including it, as statvfs is present
Martin v. Löwis [Tue, 16 May 2006 07:05:37 +0000 (07:05 +0000)]
- Test for sys/statvfs.h before including it, as statvfs is present
  on some OSX installation, but its header file is not.
Will backport to 2.4

18 years agotest_directory(): Remove the leftover temp directory that's making
Tim Peters [Mon, 15 May 2006 21:32:25 +0000 (21:32 +0000)]
test_directory():  Remove the leftover temp directory that's making
the Windows buildbots fail test_tarfile.

18 years agoReadDetectFileobjTest: repair Windows disasters by opening
Tim Peters [Mon, 15 May 2006 20:44:10 +0000 (20:44 +0000)]
ReadDetectFileobjTest:  repair Windows disasters by opening
the file object in binary mode.

The Windows buildbot slaves shouldn't swap themselves to death
anymore.  However, test_tarfile may still fail because of a
temp directory left behind from a previous failing run.
Windows buildbot owners may need to remove that directory
by hand.

18 years ago[ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634)
Georg Brandl [Mon, 15 May 2006 19:30:35 +0000 (19:30 +0000)]
1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634)

18 years agoRemove bogus DECREF of self.
Martin v. Löwis [Mon, 15 May 2006 09:22:27 +0000 (09:22 +0000)]
Remove bogus DECREF of self.
Change __str__() functions to METH_O.
Change WindowsError__str__ to use PyTuple_Pack.

18 years agoPatch #1488312, Fix memory alignment problem on SPARC in unicode. Will backport
Neal Norwitz [Mon, 15 May 2006 07:17:23 +0000 (07:17 +0000)]
Patch #1488312, Fix memory alignment problem on SPARC in unicode.  Will backport

18 years ago- Bug #1487966: Fix SystemError with conditional expression in assignment
Neal Norwitz [Mon, 15 May 2006 07:04:36 +0000 (07:04 +0000)]
- Bug #1487966: Fix SystemError with conditional expression in assignment

Most of the test_syntax changes are just updating the numbers.

18 years agoMove items implemented after a2 into the new a3 section
Neal Norwitz [Mon, 15 May 2006 06:48:14 +0000 (06:48 +0000)]
Move items implemented after a2 into the new a3 section

18 years agoFix memory leak.
Martin v. Löwis [Mon, 15 May 2006 05:51:36 +0000 (05:51 +0000)]
Fix memory leak.

18 years agoI missed one small detail in my rewrite of the osx build files: the path
Ronald Oussoren [Sun, 14 May 2006 21:07:41 +0000 (21:07 +0000)]
I missed one small detail in my rewrite of the osx build files: the path
to the Python.app template.

18 years agoA first cut at replacing the icons on MacOS X. This replaces all icons by icons
Ronald Oussoren [Sun, 14 May 2006 20:35:41 +0000 (20:35 +0000)]
A first cut at replacing the icons on MacOS X. This replaces all icons by icons
based on the new python.org logo. These are also the first icons that are
"proper" OSX icons.

These icons were created by Jacob Rus.

18 years agoRework the build system for osx applications:
Ronald Oussoren [Sun, 14 May 2006 19:56:34 +0000 (19:56 +0000)]
Rework the build system for osx applications:

* Don't use xcodebuild for building PythonLauncher, but use a normal unix
  makefile. This makes it a lot easier to use the same build flags as for the
  rest of python (e.g. make a universal version of python launcher)
* Convert the mac makefile-s to makefile.in-s and use configure to set makefile
  variables instead of forwarding them as command-line arguments
* Add a C version of pythonw, that we you can use '#!/usr/local/bin/pythonw'
* Build IDLE.app using bundlebuilder instead of BuildApplet, that will allow
  easier modification of the bundle contents later on.

18 years agoRemove lie in new comment.
Tim Peters [Sat, 13 May 2006 23:33:19 +0000 (23:33 +0000)]
Remove lie in new comment.

18 years agoTypo repair.
Tim Peters [Sat, 13 May 2006 23:31:05 +0000 (23:31 +0000)]
Typo repair.

18 years agoTeach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV
Tim Peters [Sat, 13 May 2006 23:28:20 +0000 (23:28 +0000)]
Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV
about "%u", "%lu" and "%zu" formats.

Since PyString_FromFormat and PyErr_Format have exactly the same rules
(both inherited from PyString_FromFormatV), it would be good if someone
with more LaTeX Fu changed one of them to just point to the other.
Their docs were way out of synch before this patch, and I just did a
mass copy+paste to repair that.

Not a backport candidate (this is a new feature).

18 years agoRevert 43315: Printing of %zd must be signed.
Martin v. Löwis [Sat, 13 May 2006 13:34:04 +0000 (13:34 +0000)]
Revert 43315: Printing of %zd must be signed.

18 years agoAdd \exception markup
George Yoshida [Sat, 13 May 2006 06:53:31 +0000 (06:53 +0000)]
Add \exception markup

18 years agoIntegrated the rest of the pysqlite reference manual into the Python
Gerhard Häring [Fri, 12 May 2006 23:49:49 +0000 (23:49 +0000)]
Integrated the rest of the pysqlite reference manual into the Python
documentation. Ready to be reviewed and improved upon.

18 years agoadd svn:eol-style native svn:keywords Id
Thomas Heller [Fri, 12 May 2006 19:31:46 +0000 (19:31 +0000)]
add svn:eol-style native svn:keywords Id

18 years agoset svn properties
Thomas Heller [Fri, 12 May 2006 18:47:35 +0000 (18:47 +0000)]
set svn properties

18 years agoAdd missing svn properties.
Thomas Heller [Fri, 12 May 2006 18:16:03 +0000 (18:16 +0000)]
Add missing svn properties.

18 years agoDuplicated description about the illegal continue usage can be found in nearly the...
George Yoshida [Fri, 12 May 2006 17:25:26 +0000 (17:25 +0000)]
Duplicated description about the illegal continue usage can be found in nearly the same place.
They are same, so keep the original one and remove the later-added one.

18 years agoFix alignment error on Itanium.
Martin v. Löwis [Fri, 12 May 2006 17:22:04 +0000 (17:22 +0000)]
Fix alignment error on Itanium.

18 years agoAt first there were 6 steps, but one was removed after that.
George Yoshida [Fri, 12 May 2006 16:40:11 +0000 (16:40 +0000)]
At first there were 6 steps, but one was removed after that.

18 years agoMove icon files into DLLs dir. Fixes #1477968.
Martin v. Löwis [Fri, 12 May 2006 13:57:36 +0000 (13:57 +0000)]
Move icon files into DLLs dir. Fixes #1477968.

18 years agoDynamically allocate path name buffer for Unicode
Martin v. Löwis [Fri, 12 May 2006 12:27:28 +0000 (12:27 +0000)]
Dynamically allocate path name buffer for Unicode
path name in listdir. Fixes #1431582.
Stop overallocating MAX_PATH characters for ANSI
path names. Stop assigning to errno.

18 years agoSF patch #1473132: Improve docs for tp_clear and tp_traverse,
Tim Peters [Fri, 12 May 2006 01:57:59 +0000 (01:57 +0000)]
SF patch #1473132:  Improve docs for tp_clear and tp_traverse,
by Collin Winter.

Bugfix candidate (but I'm not going to bother).

18 years agoTypo fix.
Georg Brandl [Thu, 11 May 2006 19:57:09 +0000 (19:57 +0000)]
Typo fix.

18 years agoBaseThreadedTestCase.setup(): stop special-casing WindowsError.
Tim Peters [Thu, 11 May 2006 16:37:42 +0000 (16:37 +0000)]
BaseThreadedTestCase.setup():  stop special-casing WindowsError.

Rev 45964 fiddled with WindowsError, and broke test_bsddb3 on all
the Windows buildbot slaves as a result.  This should repair it.

18 years agotypo fix
Andrew M. Kuchling [Thu, 11 May 2006 16:32:24 +0000 (16:32 +0000)]
typo fix

18 years agoGrammar fix
George Yoshida [Thu, 11 May 2006 15:53:27 +0000 (15:53 +0000)]
Grammar fix

18 years agoChange WindowsError to carry the Win32 error code in winerror,
Martin v. Löwis [Thu, 11 May 2006 13:28:43 +0000 (13:28 +0000)]
Change WindowsError to carry the Win32 error code in winerror,
and the DOS error code in errno. Revert changes where
WindowsError catch blocks unnecessarily special-case OSError.

18 years agoDon't mask a no memory error with a less meaningful one as discussed on python-checkins
Neal Norwitz [Thu, 11 May 2006 07:51:59 +0000 (07:51 +0000)]
Don't mask a no memory error with a less meaningful one as discussed on python-checkins

18 years agoDetect if %zd is supported by printf() during configure and sets
Brett Cannon [Thu, 11 May 2006 05:11:33 +0000 (05:11 +0000)]
Detect if %zd is supported by printf() during configure and sets
PY_FORMAT_SIZE_T appropriately.  Removes warnings on
OS X under gcc 4.0.1 when PY_FORMAT_SIZE_T is set to "" instead of "z" as is
needed.

18 years agoFix two small errors in argument lists.
Georg Brandl [Wed, 10 May 2006 20:09:23 +0000 (20:09 +0000)]
Fix two small errors in argument lists.