]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
20 years agoBackport:
Neal Norwitz [Tue, 10 Jan 2006 07:08:06 +0000 (07:08 +0000)] 
Backport:
SF bug #1400822, Extended version of _curses over{lay,write} does not work

Fix signatures to conform to doc (also fixed ungetmouse()).

20 years agoBackport:
Neal Norwitz [Tue, 10 Jan 2006 06:05:57 +0000 (06:05 +0000)] 
Backport:
- Patch #1400181, fix unicode string formatting to not use the locale.
  This is how string objects work.  u'%f' could use , instead of .
  for the decimal point.  Now both strings and unicode always use periods.

This is the code that would break:

    import locale
    locale.setlocale(locale.LC_NUMERIC, 'de_DE')
    u'%.1f' % 1.0
    assert '1.0' == u'%.1f' % 1.0

I couldn't create a test case which fails, but this fixes the problem.
(tested in interpreter and reported fixed by others)

20 years agoBackport:
Neal Norwitz [Mon, 9 Jan 2006 07:10:56 +0000 (07:10 +0000)] 
Backport:
Fix bugs #1244610, #1392915, fix build problem on OpenBSD 3.7 and 3.8.
configure would break checking curses.h.

Also fix whitespace consistency which I forgot to mention in the head checkin.

20 years agoBackport:
Neal Norwitz [Mon, 9 Jan 2006 06:29:16 +0000 (06:29 +0000)] 
Backport:
Bug #1400115, Fix segfault when calling curses.panel.userptr()
without prior setting of the userptr.

20 years agoPatch #881820: look for openpty and forkpty also in libbsd.
Martin v. Löwis [Sun, 8 Jan 2006 10:07:57 +0000 (10:07 +0000)] 
Patch #881820: look for openpty and forkpty also in libbsd.

20 years agoSkip this test on Darwin. It's skipped on the trunk and is listed as
Skip Montanaro [Sat, 7 Jan 2006 19:08:55 +0000 (19:08 +0000)] 
Skip this test on Darwin.  It's skipped on the trunk and is listed as
an expected skip in regrtest.py.  Make it so.

20 years agoIgnore pyo files
Neal Norwitz [Fri, 6 Jan 2006 05:25:01 +0000 (05:25 +0000)] 
Ignore pyo files

20 years agoBackport:
Neal Norwitz [Fri, 6 Jan 2006 04:40:20 +0000 (04:40 +0000)] 
Backport:
initscr() will exit if there's an error.  Try to catch the obvious failure
cases if TERM isn't set or is unknown (perhaps we should only check if
unset or empty?)

Skip the test if TERM isn't set.  This seems to occur when running under
buildbot and presumably cron.

For some more info check here:
http://mail.python.org/pipermail/python-checkins/2006-January/048704.html

20 years agobackport: squash compiler warning on Mac OSX 10.3
Skip Montanaro [Thu, 5 Jan 2006 10:51:18 +0000 (10:51 +0000)] 
backport: squash compiler warning on Mac OSX 10.3

20 years agoBackport 38951:
Neal Norwitz [Thu, 5 Jan 2006 08:00:55 +0000 (08:00 +0000)] 
Backport 38951:

fixes pybsddb SF bug id 1215432.  DB.associate() would crash when a
DBError was supposed to be raised.

20 years agoBackport: If the audio file does not exist, the test should be skipped.
Neal Norwitz [Thu, 5 Jan 2006 07:17:35 +0000 (07:17 +0000)] 
Backport: If the audio file does not exist, the test should be skipped.

20 years agoBackport: Skip test_curses if stdin is not a tty (like when run from cron or buildbot).
Neal Norwitz [Thu, 5 Jan 2006 06:10:16 +0000 (06:10 +0000)] 
Backport: Skip test_curses if stdin is not a tty (like when run from cron or buildbot).

20 years agoBackport: Fix errors on 64-bit platforms. (There are still some test problems
Neal Norwitz [Thu, 5 Jan 2006 05:45:12 +0000 (05:45 +0000)] 
Backport: Fix errors on 64-bit platforms.  (There are still some test problems

20 years agoBug #139571: wrong LaTeX label
Georg Brandl [Wed, 4 Jan 2006 21:04:24 +0000 (21:04 +0000)] 
Bug #139571: wrong LaTeX label

20 years agoIgnore .svn instead of CVS now.
Martin v. Löwis [Tue, 3 Jan 2006 06:30:40 +0000 (06:30 +0000)] 
Ignore .svn instead of CVS now.

20 years agobug #1395597: doc typo
Georg Brandl [Mon, 2 Jan 2006 22:07:25 +0000 (22:07 +0000)] 
bug #1395597: doc typo

20 years agomerge revision 41866 from trunk:
Fred Drake [Mon, 2 Jan 2006 07:25:08 +0000 (07:25 +0000)] 
merge revision 41866 from trunk:
update to reflect move to Subversion

20 years agoBug #1394868: doc typos
Georg Brandl [Sun, 1 Jan 2006 21:35:41 +0000 (21:35 +0000)] 
Bug #1394868: doc typos

20 years agoPatch by Ori Avtalion to fix a minor display glitch in the RightArrow.
Barry Warsaw [Sun, 1 Jan 2006 21:33:50 +0000 (21:33 +0000)] 
Patch by Ori Avtalion to fix a minor display glitch in the RightArrow.

I will port forward to 2.5.

20 years agoWork around test_locale failing on Solaris 10.
Martin v. Löwis [Fri, 30 Dec 2005 12:52:13 +0000 (12:52 +0000)] 
Work around test_locale failing on Solaris 10.

20 years agoUse -xcode=pic32 for SunPro.
Martin v. Löwis [Fri, 30 Dec 2005 12:32:48 +0000 (12:32 +0000)] 
Use -xcode=pic32 for SunPro.

20 years agobackport Sniffer class fix (rev 41838)
Skip Montanaro [Wed, 28 Dec 2005 15:43:50 +0000 (15:43 +0000)] 
backport Sniffer class fix (rev 41838)

20 years agoBug #999767: make setup.py obey Setup.local wrt shared modules
Georg Brandl [Tue, 27 Dec 2005 18:24:30 +0000 (18:24 +0000)] 
Bug #999767: make setup.py obey Setup.local wrt shared modules

20 years ago[ 959576 ] Can't build Python on POSIX w/o $HOME (backport)
Georg Brandl [Tue, 27 Dec 2005 17:37:16 +0000 (17:37 +0000)] 
[ 959576 ] Can't build Python on POSIX w/o $HOME (backport)

20 years agoRevert checkin for bug #1386675.
Georg Brandl [Tue, 27 Dec 2005 17:26:16 +0000 (17:26 +0000)] 
Revert checkin for bug #1386675.

20 years agoBug #1375599: Correct grammar error in tutorial
Georg Brandl [Tue, 27 Dec 2005 00:06:18 +0000 (00:06 +0000)] 
Bug #1375599:  Correct grammar error in tutorial

20 years agoBug #1386675: winreg raises WindowsErrors (backport)
Georg Brandl [Tue, 27 Dec 2005 00:03:19 +0000 (00:03 +0000)] 
Bug #1386675: winreg raises WindowsErrors (backport)

20 years agoBug #1389673: document correct return value of set methods (backport)
Georg Brandl [Mon, 26 Dec 2005 23:56:08 +0000 (23:56 +0000)] 
Bug #1389673: document correct return value of set methods (backport)

20 years agoBug #954981: urllib2 example wont work w/o ssl (backport)
Georg Brandl [Mon, 26 Dec 2005 23:36:49 +0000 (23:36 +0000)] 
Bug #954981: urllib2 example wont work w/o ssl (backport)

20 years agoBug #839075 (backport): document that highly recursive data cannot be pickled
Georg Brandl [Mon, 26 Dec 2005 23:27:50 +0000 (23:27 +0000)] 
Bug #839075 (backport): document that highly recursive data cannot be pickled

20 years agoBug #839585: mention % string operator in language ref (backport)
Georg Brandl [Mon, 26 Dec 2005 23:15:50 +0000 (23:15 +0000)] 
Bug #839585: mention % string operator in language ref (backport)

20 years agoBug #756104 (backport): document that bufsize in socket.recv() should be small
Georg Brandl [Mon, 26 Dec 2005 23:07:52 +0000 (23:07 +0000)] 
Bug #756104 (backport): document that bufsize in socket.recv() should be small

20 years agoBug #649974 (backport): make docstrings for url2pathname consistent
Georg Brandl [Mon, 26 Dec 2005 22:54:01 +0000 (22:54 +0000)] 
Bug #649974 (backport): make docstrings for url2pathname consistent

20 years agoBackport: Patch #1117398: fix cookielib LoadError
Neal Norwitz [Fri, 23 Dec 2005 21:32:06 +0000 (21:32 +0000)] 
Backport: Patch #1117398: fix cookielib LoadError

20 years agoTypo fix
Andrew M. Kuchling [Thu, 22 Dec 2005 19:31:45 +0000 (19:31 +0000)] 
Typo fix

20 years agoTypo fix
Andrew M. Kuchling [Thu, 22 Dec 2005 18:56:09 +0000 (18:56 +0000)] 
Typo fix

20 years ago[ 1388141 ] Minor error in md5 docs (backport)
Georg Brandl [Thu, 22 Dec 2005 16:15:08 +0000 (16:15 +0000)] 
1388141 ] Minor error in md5 docs (backport)

20 years agoBug #1373197: note that os.makedirs does not work with '..'
Georg Brandl [Sat, 17 Dec 2005 17:47:43 +0000 (17:47 +0000)] 
Bug #1373197: note that os.makedirs does not work with '..'

20 years agoBug #1343671: clarify docs for os.removedirs
Georg Brandl [Sat, 17 Dec 2005 17:31:07 +0000 (17:31 +0000)] 
Bug #1343671: clarify docs for os.removedirs

20 years agoBug #1106572: clarify os.makedirs docs wrt umask
Georg Brandl [Sat, 17 Dec 2005 17:14:24 +0000 (17:14 +0000)] 
Bug #1106572: clarify os.makedirs docs wrt umask

20 years agoBug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'
Hye-Shik Chang [Sat, 17 Dec 2005 04:38:31 +0000 (04:38 +0000)] 
Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'
just like string codecs.

20 years agoPatch #1360443: Make SimpleHTTPServer display unencoded directory names.
Georg Brandl [Fri, 16 Dec 2005 19:36:24 +0000 (19:36 +0000)] 
Patch #1360443: Make SimpleHTTPServer display unencoded directory names.

20 years agoPatch #1377848: typo in pyexpat docs
Georg Brandl [Fri, 16 Dec 2005 19:23:45 +0000 (19:23 +0000)] 
Patch #1377848: typo in pyexpat docs

20 years agoPatch #1376914: traceback.format_exc() has no "file" argument.
Georg Brandl [Fri, 16 Dec 2005 19:21:32 +0000 (19:21 +0000)] 
Patch #1376914: traceback.format_exc() has no "file" argument.

20 years agoBug #1378455: a problem of urllib using open_local_file (backport)
Georg Brandl [Thu, 15 Dec 2005 21:59:16 +0000 (21:59 +0000)] 
Bug #1378455: a problem of urllib using open_local_file (backport)

20 years agoRemove reference to open() mode "t" as it is platform dependent.
Georg Brandl [Thu, 15 Dec 2005 21:34:53 +0000 (21:34 +0000)] 
Remove reference to open() mode "t" as it is platform dependent.

20 years agoBug #1290333: Added a workaround for cjkcodecs' _codecs_cn module
Hye-Shik Chang [Mon, 12 Dec 2005 11:48:32 +0000 (11:48 +0000)] 
Bug #1290333: Added a workaround for cjkcodecs' _codecs_cn module
build problem on AIX.

20 years agoBug #1368481: python.dir refers to whatsnew23
Georg Brandl [Fri, 2 Dec 2005 13:43:10 +0000 (13:43 +0000)] 
Bug #1368481: python.dir refers to whatsnew23

20 years agofix recurring typo: occured --> occurred
Fred Drake [Wed, 30 Nov 2005 07:36:01 +0000 (07:36 +0000)] 
fix recurring typo: occured --> occurred
(already fixed in Python trunk)

20 years agofix indentation; this could not have passed
Fred Drake [Wed, 30 Nov 2005 07:34:04 +0000 (07:34 +0000)] 
fix indentation; this could not have passed

20 years agoBackport checkin:
Walter Dörwald [Mon, 28 Nov 2005 22:16:22 +0000 (22:16 +0000)] 
Backport checkin:
Fix leaked reference to None.

20 years agobackport: bug #1365984, urllib and data: URLs^^
Georg Brandl [Sat, 26 Nov 2005 16:51:02 +0000 (16:51 +0000)] 
backport: bug #1365984, urllib and data: URLs^^

20 years agoBug #698706: imaplib parsing INTERNALDATE backport
Georg Brandl [Sat, 26 Nov 2005 16:32:36 +0000 (16:32 +0000)] 
Bug #698706: imaplib parsing INTERNALDATE backport

20 years agoPatch #1227966: Do not defined _XOPEN_SOURCE_EXTENDED on Solaris 10.
Martin v. Löwis [Sat, 26 Nov 2005 11:38:37 +0000 (11:38 +0000)] 
Patch #1227966: Do not defined _XOPEN_SOURCE_EXTENDED on Solaris 10.
Also set _XOPEN_SOURCE to 500.

20 years agoBackport checkin:
Walter Dörwald [Fri, 25 Nov 2005 17:18:54 +0000 (17:18 +0000)] 
Backport checkin:
SF patch #1364946: Add a reference link from the dcoumentation of the encode
and decode methods to the documentation of the default error handlers.

20 years agoBackport checkin:
Walter Dörwald [Fri, 25 Nov 2005 17:02:02 +0000 (17:02 +0000)] 
Backport checkin:
SF patch #1364545: test_cmd_line.py relied on english error messages when
invoking the Python interpreter (which didn't work on non-english Windows
versions). Check return codes instead.

20 years agobug #1281408: make Py_BuildValue work with unsigned longs and long longs
Georg Brandl [Thu, 24 Nov 2005 15:38:54 +0000 (15:38 +0000)] 
bug #1281408: make Py_BuildValue work with unsigned longs and long longs

20 years agoBackport of patch #1314396: prevent threading.Thread.join() from blocking if a
Brett Cannon [Wed, 23 Nov 2005 02:19:18 +0000 (02:19 +0000)] 
Backport of patch #1314396: prevent threading.Thread.join() from blocking if a
previous call raised an exception (e.g., calling it with an illegal argument).

20 years agoBug #1357604: os.makedirs handles UNC paths
Georg Brandl [Tue, 22 Nov 2005 20:14:30 +0000 (20:14 +0000)] 
Bug #1357604: os.makedirs handles UNC paths

20 years agoadded example for the ** operator in function calls
Georg Brandl [Tue, 22 Nov 2005 19:50:22 +0000 (19:50 +0000)] 
added example for the ** operator in function calls

20 years agoPatch #1255218: libmultifile.tex: tell what a decoration is
Georg Brandl [Tue, 22 Nov 2005 19:43:05 +0000 (19:43 +0000)] 
Patch #1255218: libmultifile.tex: tell what a decoration is

20 years agoBug #869197: setgroups rejects long integer argument
Georg Brandl [Tue, 22 Nov 2005 19:31:08 +0000 (19:31 +0000)] 
Bug #869197: setgroups rejects long integer argument

20 years agoBug #1359035: Doc: Uxxxxxxxx escapes are interpreted in raw unicode literals.
Georg Brandl [Tue, 22 Nov 2005 19:24:23 +0000 (19:24 +0000)] 
Bug #1359035: Doc: Uxxxxxxxx escapes are interpreted in raw unicode literals.

20 years agoAdd a note to os.chown that permission constants can be combined
Georg Brandl [Tue, 22 Nov 2005 19:15:58 +0000 (19:15 +0000)] 
Add a note to os.chown that permission constants can be combined

20 years ago[Patch #1094164] replaceChild(x,x) ends up removing x from the tree. Add fix from...
Andrew M. Kuchling [Tue, 22 Nov 2005 19:04:36 +0000 (19:04 +0000)] 
[Patch #1094164] replaceChild(x,x) ends up removing x from the tree.  Add fix from Felix Rabe and a test case

20 years ago[Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and bugfix...
Andrew M. Kuchling [Tue, 22 Nov 2005 15:39:05 +0000 (15:39 +0000)] 
[Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed.  Add tests and bugfix.  Bug reported by John Schmidt; bugfix by Danny Yoo.

20 years ago[Bug #449093] FloorDiv AST node type not listed
Andrew M. Kuchling [Tue, 22 Nov 2005 14:53:07 +0000 (14:53 +0000)] 
[Bug #449093] FloorDiv AST node type not listed

20 years agoBackport r41489:
Walter Dörwald [Mon, 21 Nov 2005 17:01:49 +0000 (17:01 +0000)] 
Backport r41489:
Fix typo.

20 years agoBackport one of the ref/memory leaks
Neal Norwitz [Mon, 21 Nov 2005 00:05:58 +0000 (00:05 +0000)] 
Backport one of the ref/memory leaks

20 years agobackport
Skip Montanaro [Thu, 17 Nov 2005 18:32:26 +0000 (18:32 +0000)] 
backport

20 years agobackport
Skip Montanaro [Thu, 17 Nov 2005 18:22:01 +0000 (18:22 +0000)] 
backport

20 years agoBackport r41462:
Walter Dörwald [Thu, 17 Nov 2005 09:47:09 +0000 (09:47 +0000)] 
Backport r41462:
Fix typo in comment
(reported on the pydotorg mailing list).

20 years agoupdate busted comment
Fred Drake [Fri, 11 Nov 2005 19:35:02 +0000 (19:35 +0000)] 
update busted comment

20 years agoFixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting...
Vinay Sajip [Wed, 9 Nov 2005 13:56:10 +0000 (13:56 +0000)] 
Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch)

20 years agoBackport: SF Bug #1348477, regextest can't be pydoc'ed.
Neal Norwitz [Wed, 9 Nov 2005 07:08:41 +0000 (07:08 +0000)] 
Backport: SF Bug #1348477, regextest can't be pydoc'ed.

20 years agoBackport:
Neal Norwitz [Wed, 9 Nov 2005 07:02:40 +0000 (07:02 +0000)] 
Backport:
 SF Bug #1350188, "setdlopenflags" leads to crash upon "import"
 It was possible dlerror() returns a NULL pointer, use a default error
 message in this case.

20 years agoBackport (with output/test_poll):
Neal Norwitz [Thu, 3 Nov 2005 05:11:17 +0000 (05:11 +0000)] 
Backport (with output/test_poll):

Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint
Need to check return result of PyInt_AsLong()

20 years agoMake consistent with HEAD (some change was not backported)
Neal Norwitz [Thu, 3 Nov 2005 04:39:46 +0000 (04:39 +0000)] 
Make consistent with HEAD (some change was not backported)

20 years agoFix SF #1346026, doc typo
Neal Norwitz [Thu, 3 Nov 2005 04:35:39 +0000 (04:35 +0000)] 
Fix SF #1346026, doc typo

20 years agoAdd an import to a code fragment.
Brett Cannon [Wed, 2 Nov 2005 23:00:23 +0000 (23:00 +0000)] 
Add an import to a code fragment.

Backport of fix for bug #1346395.

20 years agoBackport:
Neal Norwitz [Wed, 2 Nov 2005 06:02:24 +0000 (06:02 +0000)] 
Backport:
Fix SF #1345263, colorsys tests, bug in frange

Fix a typo that caused step to be ignored.

20 years agoBackport (with cleanup): Bug #1344508, Fix UNIX mmap leaking file descriptors.
Neal Norwitz [Wed, 2 Nov 2005 05:43:19 +0000 (05:43 +0000)] 
Backport (with cleanup): Bug #1344508, Fix UNIX mmap leaking file descriptors.

20 years agoException handling now raises KeyboardInterrupt and SystemExit rather than passing...
Vinay Sajip [Mon, 31 Oct 2005 14:30:37 +0000 (14:30 +0000)] 
Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError

20 years agoException handling now raises KeyboardInterrupt and SystemExit rather than passing...
Vinay Sajip [Mon, 31 Oct 2005 14:20:56 +0000 (14:20 +0000)] 
Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError

20 years agoadd missing "and"
Fred Drake [Sun, 30 Oct 2005 04:44:34 +0000 (04:44 +0000)] 
add missing "and"

20 years agoSF Bug #1341934: Fix a representation of "\n" to use a proper tag.
Hye-Shik Chang [Sun, 30 Oct 2005 03:05:27 +0000 (03:05 +0000)] 
SF Bug #1341934: Fix a representation of "\n" to use a proper tag.

20 years agoBackport:
Neal Norwitz [Fri, 28 Oct 2005 06:00:51 +0000 (06:00 +0000)] 
Backport:
- Patch #1338314, Bug #1336623: fix tarfile so it can extract
  REGTYPE directories from tarfiles written by old programs.

20 years agoOne-off "No handlers..." error message only raised if raiseExceptions is set.
Vinay Sajip [Sun, 23 Oct 2005 22:36:53 +0000 (22:36 +0000)] 
One-off "No handlers..." error message only raised if raiseExceptions is set.

20 years agoBackport: SF bug #1167751: fix incorrect code being for generator expressions.
Neal Norwitz [Sun, 23 Oct 2005 00:44:03 +0000 (00:44 +0000)] 
Backport: SF bug #1167751: fix incorrect code being for generator expressions.

20 years agoDon't use a string exception since it's deprecated
Neal Norwitz [Fri, 21 Oct 2005 06:00:58 +0000 (06:00 +0000)] 
Don't use a string exception since it's deprecated

20 years agoadd missing word
Fred Drake [Thu, 20 Oct 2005 17:53:01 +0000 (17:53 +0000)] 
add missing word
(backported from trunk revision 1.38)

20 years agoBackport:
Neal Norwitz [Thu, 20 Oct 2005 04:56:09 +0000 (04:56 +0000)] 
Backport:
Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer)

Problem: if two files are assigned the same inode
number by the filesystem, the second one will be added
as a hardlink to the first, which means that the
content will be lost.

The patched code checks if the file's st_nlink is
greater 1. So only for files that actually have several
links pointing to them hardlinks will be created, which
is what GNU tar does.

20 years agoGet BSD DB working most for version 3.2
Neal Norwitz [Thu, 20 Oct 2005 04:36:58 +0000 (04:36 +0000)] 
Get BSD DB working most for version 3.2

20 years agoBackport: SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc.
Neal Norwitz [Thu, 20 Oct 2005 04:16:45 +0000 (04:16 +0000)] 
Backport: SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc.

20 years agoTeach unquote() to handle unicode inputs
Raymond Hettinger [Sat, 15 Oct 2005 16:44:57 +0000 (16:44 +0000)] 
Teach unquote() to handle unicode inputs

20 years agoOptimised Placeholders handling of child loggers by using a dict rather than a list...
Vinay Sajip [Fri, 14 Oct 2005 09:37:54 +0000 (09:37 +0000)] 
Optimised Placeholders handling of child loggers by using a dict rather than a list (much slower in the pathological case of hundreds of child Loggers to a Placeholder - problem reported by Ryan Blazecka).

20 years agoBackport: SF bug #1323739, C API doc for PySequence_Tuple duplicated
Neal Norwitz [Wed, 12 Oct 2005 03:59:56 +0000 (03:59 +0000)] 
Backport: SF bug #1323739, C API doc for PySequence_Tuple duplicated

20 years agofix stupid typo
Fred Drake [Tue, 11 Oct 2005 20:25:19 +0000 (20:25 +0000)] 
fix stupid typo

20 years agoAdded Host and Content-type headers to requests sent by HTTPHandler (suggested by...
Vinay Sajip [Tue, 11 Oct 2005 13:16:46 +0000 (13:16 +0000)] 
Added Host and Content-type headers to requests sent by HTTPHandler (suggested by Steven Vereecken)

20 years agoBackport: SF bug #1323294, Minor error in the Library Reference doc.
Neal Norwitz [Tue, 11 Oct 2005 03:24:28 +0000 (03:24 +0000)] 
Backport: SF bug #1323294, Minor error in the Library Reference doc.