]> granicus.if.org Git - python/log
python
21 years agoSF bug #782369: Massive memory leak in array module
Raymond Hettinger [Tue, 5 Aug 2003 11:23:59 +0000 (11:23 +0000)]
SF bug #782369:  Massive memory leak in array module

Fixed leak caused by switching from PyList_GetItem to PySequence_GetItem.
Added missing NULL check.
Clarified code by converting an "if" to an "else if".

Will backport to 2.3.

21 years agoforgot to commit this - note about the signal module SIGRT(MIN,MAX)
Anthony Baxter [Tue, 5 Aug 2003 06:33:56 +0000 (06:33 +0000)]
forgot to commit this - note about the signal module SIGRT(MIN,MAX)

21 years agoMention caching and better thread-safety for Lib/_strptime.py
Brett Cannon [Tue, 5 Aug 2003 06:27:04 +0000 (06:27 +0000)]
Mention caching and better thread-safety for Lib/_strptime.py

21 years agoPatch #781722: Reject AF_INET6 if IPv6 is disabled. Will backport to 2.3.
Martin v. Löwis [Tue, 5 Aug 2003 06:25:06 +0000 (06:25 +0000)]
Patch #781722: Reject AF_INET6 if IPv6 is disabled. Will backport to 2.3.

21 years agoSupport trailing dots in DNS names. Fixes #782510. Will backport to 2.3.
Martin v. Löwis [Tue, 5 Aug 2003 06:19:47 +0000 (06:19 +0000)]
Support trailing dots in DNS names. Fixes #782510. Will backport to 2.3.

21 years agoCorrect URL of normalization file. Fixes #781065. Will backport to 2.3.
Martin v. Löwis [Tue, 5 Aug 2003 05:59:13 +0000 (05:59 +0000)]
Correct URL of normalization file. Fixes #781065. Will backport to 2.3.

21 years agoPatch #781126: Fix markup for add_fallback. Will backport to 2.3.
Martin v. Löwis [Tue, 5 Aug 2003 05:54:15 +0000 (05:54 +0000)]
Patch #781126: Fix markup for add_fallback. Will backport to 2.3.

21 years agoMake sure eol_convention is an ASCII string. Fixes #774680.
Martin v. Löwis [Tue, 5 Aug 2003 05:51:20 +0000 (05:51 +0000)]
Make sure eol_convention is an ASCII string. Fixes #774680.
Will backport to 2.3.

21 years agoinit_myformat(): None of the "mark" values can be empty strings, or
Fred Drake [Tue, 5 Aug 2003 05:00:23 +0000 (05:00 +0000)]
init_myformat():  None of the "mark" values can be empty strings, or
    LaTeX2HTML feels free to remove a surrounding element that
    contains no other content.  Since such an element is typically a
    named anchor used for hyperlinking, they should not be removed.
    Unfortunatley, making sure these marks are non-empty is the most
    direct way of avoiding this behavior.

Thanks to Dave Kuhlman for tracking this down; this was some excellent
detective work!

21 years agoRe-introduce caching of TimeRE and compiled regexes with added thread-safety.
Brett Cannon [Tue, 5 Aug 2003 04:02:49 +0000 (04:02 +0000)]
Re-introduce caching of TimeRE and compiled regexes with added thread-safety.
Also remove now unnecessary property attributes for thread safety
(no longer have lazy attributes) and code simplicity reasons.

Timezone storage has been reworked to be simpler and more flexible.  All values
in LocaleTime instances are lower-cased.  This is all done to simplify the
module.

The module now assumes nothing beyond the strptime function will be exposed for
general use beyond providing functionality for strptime.

21 years agoTouch-up to docstrings.
Brett Cannon [Tue, 5 Aug 2003 03:52:04 +0000 (03:52 +0000)]
Touch-up to docstrings.

21 years agoAdd note about fileno not being usable as a normal file descriptor in Windows.
Brett Cannon [Tue, 5 Aug 2003 03:51:24 +0000 (03:51 +0000)]
Add note about fileno not being usable as a normal file descriptor in Windows.

21 years agobetter support for well-formed XHTML
Fred Drake [Tue, 5 Aug 2003 03:48:29 +0000 (03:48 +0000)]
better support for well-formed XHTML

21 years agomake the portions of the generated HTML produced by these styles better
Fred Drake [Tue, 5 Aug 2003 03:45:37 +0000 (03:45 +0000)]
make the portions of the generated HTML produced by these styles better
conform to XHTML rules.

21 years agoClarified that TypeErrors can be raised by any
Raymond Hettinger [Mon, 4 Aug 2003 08:33:50 +0000 (08:33 +0000)]
Clarified that TypeErrors can be raised by any
function (not just builtins).

The issue arose in a thread on comp.lang.python.

21 years agoprotect against test problems with Jython
Skip Montanaro [Sun, 3 Aug 2003 23:30:40 +0000 (23:30 +0000)]
protect against test problems with Jython

21 years agoadded test for bug 782369
Skip Montanaro [Sun, 3 Aug 2003 23:02:10 +0000 (23:02 +0000)]
added test for bug 782369

21 years agomore extension marshal tests and conversion to unittest - was surprised to
Skip Montanaro [Sat, 2 Aug 2003 15:02:33 +0000 (15:02 +0000)]
more extension marshal tests and conversion to unittest - was surprised to
see how much of the file was not covered by the build process

21 years agoAs discussed on python-dev, changed builtin.zip() to handle zero arguments
Raymond Hettinger [Sat, 2 Aug 2003 07:42:57 +0000 (07:42 +0000)]
As discussed on python-dev, changed builtin.zip() to handle zero arguments
by returning an empty list instead of raising a TypeError.

21 years agoTo be a good citizen, it should really delete its socket when done.
Skip Montanaro [Fri, 1 Aug 2003 14:20:02 +0000 (14:20 +0000)]
To be a good citizen, it should really delete its socket when done.

21 years agoadd skeletal "what's new" for 2.4a1 and mention a couple python-mode tweaks.
Skip Montanaro [Fri, 1 Aug 2003 05:01:54 +0000 (05:01 +0000)]
add skeletal "what's new" for 2.4a1 and mention a couple python-mode tweaks.

21 years agodelete the f1 key binding. py-help-at-point is still available @ C-c C-h.
Skip Montanaro [Fri, 1 Aug 2003 04:27:34 +0000 (04:27 +0000)]
delete the f1 key binding.  py-help-at-point is still available @ C-c C-h.

21 years agomake pending-delete/delete-selection mode work with py-electric-colon
Skip Montanaro [Fri, 1 Aug 2003 04:00:32 +0000 (04:00 +0000)]
make pending-delete/delete-selection mode work with py-electric-colon

21 years agoPatch [ 776725 ] add SIGRTMIN, SIGRTMAX to signalmodule.c
Anthony Baxter [Thu, 31 Jul 2003 10:35:29 +0000 (10:35 +0000)]
Patch [ 776725 ] add SIGRTMIN, SIGRTMAX to signalmodule.c

Trivial patch, and the alternative is to guess at the right values
based on platform...

21 years agotweak to py-fill-paragraph - problem noted by John Lee and correction
Skip Montanaro [Thu, 31 Jul 2003 04:59:48 +0000 (04:59 +0000)]
tweak to py-fill-paragraph - problem noted by John Lee and correction
submitted by Bernard Herzog.  Closes patch 779830.

21 years agoComplete move of windows builds to 2.4alpha
Mark Hammond [Thu, 31 Jul 2003 02:06:22 +0000 (02:06 +0000)]
Complete move of windows builds to 2.4alpha

21 years agoEveryone knows what Fred meant, but I thought I'd make it official... ;-)
Skip Montanaro [Thu, 31 Jul 2003 01:17:22 +0000 (01:17 +0000)]
Everyone knows what Fred meant, but I thought I'd make it official... ;-)

21 years agoGeneralize the template for the "What's New" document so it's easier
Fred Drake [Wed, 30 Jul 2003 23:52:16 +0000 (23:52 +0000)]
Generalize the template for the "What's New" document so it's easier
to extract next time without having to remember where in CVS to dig it
out.

21 years agothere's a new "What's New" for Python 2.4
Fred Drake [Wed, 30 Jul 2003 19:14:54 +0000 (19:14 +0000)]
there's a new "What's New" for Python 2.4

21 years agoboilerplate to start off "What's New in Python 2.4"
Fred Drake [Wed, 30 Jul 2003 19:14:09 +0000 (19:14 +0000)]
boilerplate to start off "What's New in Python 2.4"

21 years agoUpdate to the same version info used by the interpreter.
Fred Drake [Wed, 30 Jul 2003 18:43:28 +0000 (18:43 +0000)]
Update to the same version info used by the interpreter.

21 years agoUpdate version number here as well; patchlevel.h is not the only place.
Fred Drake [Wed, 30 Jul 2003 17:39:48 +0000 (17:39 +0000)]
Update version number here as well; patchlevel.h is not the only place.

21 years agoFix typo.
Walter Dörwald [Wed, 30 Jul 2003 12:14:02 +0000 (12:14 +0000)]
Fix typo.

21 years ago[Bug #779469] Fix error in example code
Andrew M. Kuchling [Wed, 30 Jul 2003 11:55:06 +0000 (11:55 +0000)]
[Bug #779469] Fix error in example code

21 years agoBump the trunk to 2.4a0
Barry Warsaw [Wed, 30 Jul 2003 05:37:39 +0000 (05:37 +0000)]
Bump the trunk to 2.4a0

21 years agoupdate the documentation contact address
Fred Drake [Wed, 30 Jul 2003 02:55:28 +0000 (02:55 +0000)]
update the documentation contact address

21 years ago- update the documentation contact address
Fred Drake [Wed, 30 Jul 2003 02:55:01 +0000 (02:55 +0000)]
- update the documentation contact address
- remove text about the long-moved Mac OS libref chapter

21 years agoGet rid of empty sections
Barry Warsaw [Tue, 29 Jul 2003 22:11:31 +0000 (22:11 +0000)]
Get rid of empty sections

21 years agoSF bug 778400: IDLE hangs when selecting "Edit with IDLE".
Tim Peters [Tue, 29 Jul 2003 17:22:57 +0000 (17:22 +0000)]
SF bug 778400:  IDLE hangs when selecting "Edit with IDLE".
The fix is confined to the Windows installer.

Not a bugfix candidate:  the need for the new -n switch added here was
introduced by moving to the idlefork IDLE (so this change isn't needed
or helpful before 2.3).

21 years agoBump version number; record 2.3 release date
Andrew M. Kuchling [Tue, 29 Jul 2003 12:06:32 +0000 (12:06 +0000)]
Bump version number; record 2.3 release date

21 years agoUpdate release information.
Fred Drake [Tue, 29 Jul 2003 03:20:32 +0000 (03:20 +0000)]
Update release information.

21 years agoBump version information.
Fred Drake [Tue, 29 Jul 2003 03:11:34 +0000 (03:11 +0000)]
Bump version information.

21 years agoUpdated Windows installer for 2.3 final.
Tim Peters [Tue, 29 Jul 2003 00:29:44 +0000 (00:29 +0000)]
Updated Windows installer for 2.3 final.

21 years agoRepaired botched release serial number.
Tim Peters [Tue, 29 Jul 2003 00:25:20 +0000 (00:25 +0000)]
Repaired botched release serial number.

21 years agoRepair botched release serial number.
Tim Peters [Tue, 29 Jul 2003 00:21:36 +0000 (00:21 +0000)]
Repair botched release serial number.

21 years agoBump Windows build number for 2.3 final.
Tim Peters [Tue, 29 Jul 2003 00:18:44 +0000 (00:18 +0000)]
Bump Windows build number for 2.3 final.

21 years agoAdded section for 2.3 final; moved IDLE news into it that I inserted in
Tim Peters [Tue, 29 Jul 2003 00:10:29 +0000 (00:10 +0000)]
Added section for 2.3 final; moved IDLE news into it that I inserted in
a wrong place over the weekend.

21 years agoBump Windows resource version macro for 2.3 final.
Tim Peters [Tue, 29 Jul 2003 00:08:01 +0000 (00:08 +0000)]
Bump Windows resource version macro for 2.3 final.

21 years agoBump release level to 2.3 (we won't have time for this tomorrow).
Tim Peters [Tue, 29 Jul 2003 00:05:34 +0000 (00:05 +0000)]
Bump release level to 2.3 (we won't have time for this tomorrow).

21 years agoUpdate URL.
Fred Drake [Mon, 28 Jul 2003 14:39:13 +0000 (14:39 +0000)]
Update URL.

21 years agoGave the main NEWS file its own IDLE section, and populated it with a
Tim Peters [Sun, 27 Jul 2003 20:23:49 +0000 (20:23 +0000)]
Gave the main NEWS file its own IDLE section, and populated it with a
blurb about ZoneAlarm (etc) nags.

21 years agoAdded a banner to the shell startup message discussing possible
Kurt B. Kaiser [Sun, 27 Jul 2003 03:24:19 +0000 (03:24 +0000)]
Added a banner to the shell startup message discussing possible
warnings from personal firewall software.  Added the same text
to README.txt, updated NEWS.txt for release.

M NEWS.txt
M PyShell.py
M README.txt

21 years agoUpdate for release.
Kurt B. Kaiser [Sun, 27 Jul 2003 00:56:41 +0000 (00:56 +0000)]
Update for release.

21 years agoBump the version number
Barry Warsaw [Fri, 25 Jul 2003 03:13:02 +0000 (03:13 +0000)]
Bump the version number

21 years agoThis commit was manufactured by cvs2svn to create tag 'r23c2'. v2.3c2
cvs2svn [Fri, 25 Jul 2003 01:12:48 +0000 (01:12 +0000)]
This commit was manufactured by cvs2svn to create tag 'r23c2'.

21 years agoThis is release candidate 2
Barry Warsaw [Fri, 25 Jul 2003 01:12:48 +0000 (01:12 +0000)]
This is release candidate 2

21 years agoUpdated news for 2.3c2.
Barry Warsaw [Fri, 25 Jul 2003 01:09:40 +0000 (01:09 +0000)]
Updated news for 2.3c2.

21 years agoDon't export the SPB type as "SPB", because it shadows the method SPB,
Jack Jansen [Thu, 24 Jul 2003 22:25:03 +0000 (22:25 +0000)]
Don't export the SPB type as "SPB", because it shadows the method SPB,
which is really important. This is a stopgap measure, as only the generated
C code is adapted. Fixes #776533.

21 years agoAdded instructions on setting the proxy host.
Jack Jansen [Thu, 24 Jul 2003 21:46:40 +0000 (21:46 +0000)]
Added instructions on setting the proxy host.

21 years agoFixes bug of having default argument for TimeRE's __init__ that caused the
Brett Cannon [Thu, 24 Jul 2003 20:02:28 +0000 (20:02 +0000)]
Fixes bug of having default argument for TimeRE's __init__ that caused the
LocaleTime instance to only be created once and thus not be recreated when
the locale changed.

21 years agoFix [ 776721 ] locale.setlocale() leaks
Mark Hammond [Thu, 24 Jul 2003 14:15:07 +0000 (14:15 +0000)]
Fix [ 776721 ] locale.setlocale() leaks
Our saved locale was not being freed.  Also check correct variable for
NULL.

21 years agoRemove caching of TimeRE (and thus LocaleTime) instance. Error was being
Brett Cannon [Thu, 24 Jul 2003 06:27:17 +0000 (06:27 +0000)]
Remove caching of TimeRE (and thus LocaleTime) instance.  Error was being
caught when executing test_strptime, test_logging, and test_time in that order
when the testing of "%c" occured.  Suspect the cache was not being recreated
(the test passed when test_logging was forced to re-establish the locale).

21 years agoBump release number.
Fred Drake [Thu, 24 Jul 2003 01:22:50 +0000 (01:22 +0000)]
Bump release number.

21 years agoUpdate version numbers and dates for 2.3c2 -- we won't be able to do this
Tim Peters [Thu, 24 Jul 2003 00:15:46 +0000 (00:15 +0000)]
Update version numbers and dates for 2.3c2 -- we won't be able to do this
during the day tomorrow, so doing it earlier than I'd like.

21 years agoBugfix for #775892: added -mno-fused-madd to BASECFLAGS on MacOSX.
Jack Jansen [Wed, 23 Jul 2003 22:17:28 +0000 (22:17 +0000)]
Bugfix for #775892: added -mno-fused-madd to BASECFLAGS on MacOSX.
This makes test_coercion pass on Panther.

Also added a note to NEWS that pythonw works again (it was broken in rc1).

21 years ago1. Python Bug 775541: Calltips error when docstring is None. Introduced
Kurt B. Kaiser [Wed, 23 Jul 2003 15:42:14 +0000 (15:42 +0000)]
1. Python Bug 775541: Calltips error when docstring is None.  Introduced
   by patch 769142.  Fixed by patch 776062. KBK will backport net result
   to IDLE release22-maint and IDLEfork.
2. Update NEWS.txt and idlever for release.

21 years agoFix representation of ^= operator in __ixor__() documentation.
Fred Drake [Wed, 23 Jul 2003 15:18:03 +0000 (15:18 +0000)]
Fix representation of ^= operator in __ixor__() documentation.
Closes SF bug #776181.  Should be backported.

21 years agoMacPython-OS9 has its own copy of the interrupt handling code. Added PyErr_SetInterru...
Jack Jansen [Wed, 23 Jul 2003 11:39:28 +0000 (11:39 +0000)]
MacPython-OS9 has its own copy of the interrupt handling code. Added PyErr_SetInterrupt() here too.

21 years agoDon't force boot-disk-only install, for reasons unknown it causes more
Jack Jansen [Wed, 23 Jul 2003 10:51:55 +0000 (10:51 +0000)]
Don't force boot-disk-only install, for reasons unknown it causes more
problems than it solves. In stead, put a warning near the top of the
welcome message. Fixes (or, rather works around) bug #764975.

21 years agoScripts runs with pythonw no longer had full window manager access due
Jack Jansen [Wed, 23 Jul 2003 10:49:17 +0000 (10:49 +0000)]
Scripts runs with pythonw no longer had full window manager access due
to the name change of Python.app/Contents/MacOS/python to
Python.app/Contents/MacOS/Python. Fixes #776116.

21 years agoRestored commented-out line checked in by mistake.
Tim Peters [Wed, 23 Jul 2003 00:30:39 +0000 (00:30 +0000)]
Restored commented-out line checked in by mistake.

21 years agolocale-restoration code: Don't leave comparison to None implicit. For
Tim Peters [Wed, 23 Jul 2003 00:30:11 +0000 (00:30 +0000)]
locale-restoration code:  Don't leave comparison to None implicit.  For
all I know, the original locale may be '' (I don't think that's possible,
but ...), and if so we would certainly want to restore it.

21 years agoFred wasn't kidding -- there really are docs for the locale module <wink>.
Tim Peters [Wed, 23 Jul 2003 00:05:07 +0000 (00:05 +0000)]
Fred wasn't kidding -- there really are docs for the locale module <wink>.

Obtain the original locale in the documented way.  This way actually
works for me.

Restore the original locale at the end, instead of forcing to "C".

Move the locale fiddling into the test driver instead of doing it as a
side effect of merely importing the module.  I don't know why the test
is mucking with locale (and also added a comment saying so), but it
surely has no justification for doing that as an import side-effect.
Now whenever the locale-changing code executes, the locale-restoring code
will also get run.

21 years agoFix error in test of not comparing against 0 item of a list
Brett Cannon [Tue, 22 Jul 2003 21:07:16 +0000 (21:07 +0000)]
Fix error in test of not comparing against 0 item of a list

21 years agoPatch #775784: YA Cygwin expected regression test skip patch
Jason Tishler [Tue, 22 Jul 2003 18:35:58 +0000 (18:35 +0000)]
Patch #775784: YA Cygwin expected regression test skip patch

This patch just adds test_ioctl to the list of expected skips for Cygwin.

21 years agoChange the zipimport implementation to accept files containing
Thomas Heller [Tue, 22 Jul 2003 18:10:15 +0000 (18:10 +0000)]
Change the zipimport implementation to accept files containing
arbitrary bytes before the actual zip compatible archive.  Zipfiles
containing comments at the end of the file are still not supported.

Add a testcase to test_zipimport, and update NEWS.

This closes sf #775637 and sf #669036.

21 years agoPatch 775605: Cygwin pthread_sigmask() workaround patch
Jason Tishler [Tue, 22 Jul 2003 15:20:49 +0000 (15:20 +0000)]
Patch 775605: Cygwin pthread_sigmask() workaround patch

Cygwin's pthread_sigmask() implementation appears to be buggy. This
patch works around this problem by using sigprocmask() instead.

This patch is implemented in a general way so it could be used by other
platforms too. If this approach is deemed too risky, then I can work up
a patch that just hacks Python/thread_pthread.h for Cygwin.

Note that I tested this patch against 2.3c1 under Red Hat Linux 8.0 too.

[snip]
And finally, I need someone to regenerate pyconfig.h.in and configure
with the same versions of the autotools that are normally used by
Python.

Neal kindly regenerated pyconfig.h.in and configure for me.

21 years agomore generic reference to python interpreter
Skip Montanaro [Tue, 22 Jul 2003 14:37:42 +0000 (14:37 +0000)]
more generic reference to python interpreter

21 years agoVarious tweaks to make the packages work better. Still not 100%, though.
Jack Jansen [Tue, 22 Jul 2003 14:31:34 +0000 (14:31 +0000)]
Various tweaks to make the packages work better. Still not 100%, though.

21 years agoFiles used for the 2.3rc1+ binary installer. This one has the size problem
Jack Jansen [Tue, 22 Jul 2003 13:45:26 +0000 (13:45 +0000)]
Files used for the 2.3rc1+ binary installer. This one has the size problem
fixed. It also attempts to force boot-disk-only installs, but this seems to
lead to a problem that you have to deselect and reselect the installation disk.
If no-one comes up with a fix RSN I'll revert to the previous situation and
explain in the readme that you cannot install on a non-system-disk.

21 years agoImportant usability fix in itertools documentation.
Raymond Hettinger [Tue, 22 Jul 2003 06:33:13 +0000 (06:33 +0000)]
Important usability fix in itertools documentation.

21 years agoWindows fix: When PYTHONCASEOK is set, or for any other reason imports
Tim Peters [Tue, 22 Jul 2003 02:50:01 +0000 (02:50 +0000)]
Windows fix:  When PYTHONCASEOK is set, or for any other reason imports
are satisfied in a case-insensitive manner, the attempt to import (the
non-existent) fcntl gets satisfied by FCNTL.py instead, and the tempfile
module defines a Unix-specific _set_cloexec() function in that case.  As
a result, temp files can't be created then (blows up with an AttributeError
trying to reference fcntl.fcntl).  This just popped up in the spambayes
project, where there is no apparent workaround (which is why I'm pushing
this in now).

21 years agoAvoid a 301 permanent redirect.
Fred Drake [Tue, 22 Jul 2003 01:09:22 +0000 (01:09 +0000)]
Avoid a 301 permanent redirect.
Part of SF patch #773007.

Also fixed a number of mostly cosmetic markup errors.

21 years agoAvoid a 301 permanent redirect.
Fred Drake [Tue, 22 Jul 2003 01:09:22 +0000 (01:09 +0000)]
Avoid a 301 permanent redirect.
Part of SF patch #773007.

21 years agoAvoid a few 301 permanent redirects.
Fred Drake [Tue, 22 Jul 2003 00:52:42 +0000 (00:52 +0000)]
Avoid a few 301 permanent redirects.
Part of SF patch #773007.

21 years agoAvoid a 301 permanent redirect.
Fred Drake [Tue, 22 Jul 2003 00:49:11 +0000 (00:49 +0000)]
Avoid a 301 permanent redirect.
Part of SF patch #773007.

21 years agoreaderThread(): Add max_retries to both DeadlockWrap() calls. This
Barry Warsaw [Mon, 21 Jul 2003 23:01:34 +0000 (23:01 +0000)]
readerThread(): Add max_retries to both DeadlockWrap() calls.  This
may cause some tests to fail but it prevents them from hanging.

21 years agoWe erronuously re-used the pimpinstaller object if there were multiple installs.
Jack Jansen [Mon, 21 Jul 2003 22:11:07 +0000 (22:11 +0000)]
We erronuously re-used the pimpinstaller object if there were multiple installs.
This lead to a duplication of error messages (and installs). Fixes #764615.

21 years agoBecause plistlib doesn't catch all possible errors that can
Jack Jansen [Mon, 21 Jul 2003 22:03:14 +0000 (22:03 +0000)]
Because plistlib doesn't catch all possible errors that can
happen while parsing a plistfile feeding an ill-formatted file to
pimp may cause an exception. As a stopgap we use an unqualified except
and print an error message "Unspecified error, probably ill-formatted
database". Fixes #765621.

21 years agoBackport from r23c1-branch:
Jack Jansen [Mon, 21 Jul 2003 20:47:11 +0000 (20:47 +0000)]
Backport from r23c1-branch:
Pimp crashed if you tried to install a non-installable package, in stead
of printing a decent error message. Fixes #773450..

21 years agotest01_join(): Fix a test failure when run with "python -O". The
Barry Warsaw [Mon, 21 Jul 2003 18:43:33 +0000 (18:43 +0000)]
test01_join(): Fix a test failure when run with "python -O".  The
setting of sCursor happened in an assert.

21 years agoRepair mis-application of Jeremy's patch. Thanks, Neal!
Fred Drake [Mon, 21 Jul 2003 17:22:43 +0000 (17:22 +0000)]
Repair mis-application of Jeremy's patch.  Thanks, Neal!

21 years agoAdded note about the pyexpat memory leak fix.
Fred Drake [Mon, 21 Jul 2003 17:17:10 +0000 (17:17 +0000)]
Added note about the pyexpat memory leak fix.

21 years agoFix memory leak reported & discussed on the Python XML-SIG mailing list.
Fred Drake [Mon, 21 Jul 2003 17:05:56 +0000 (17:05 +0000)]
Fix memory leak reported & discussed on the Python XML-SIG mailing list.
This patch was provided by Jeremy Kloth, and corresponds to pyexpat.c
1.77 in the PyXML CVS.

21 years agoClarify a statement regarding both shared and static library.
Fred Drake [Mon, 21 Jul 2003 16:01:39 +0000 (16:01 +0000)]
Clarify a statement regarding both shared and static library.
Closes SF bug #774480.

21 years agoMerge the old dumbdbm documetation into the new docs that have been added.
Fred Drake [Mon, 21 Jul 2003 15:30:15 +0000 (15:30 +0000)]
Merge the old dumbdbm documetation into the new docs that have been added.
Make some module references hyperlinks.

21 years agoMerge 23c1-branch back into the head. Barry will send email about the
Tim Peters [Mon, 21 Jul 2003 14:25:23 +0000 (14:25 +0000)]
Merge 23c1-branch back into the head.  Barry will send email about the
New Plan (releases to be made off the head, ongoing random 2.4 stuff
to be done on a short-lived branch, provided anyone is motivated enough
to create one).

21 years agoChange \code to \verb, because TeX merges the two dashes into a
Andrew M. Kuchling [Mon, 21 Jul 2003 12:49:46 +0000 (12:49 +0000)]
Change \code to \verb, because TeX merges the two dashes into a
hyphen, resulting in the output '-list-classifiers', not the correct
'--list-classifiers'.  I've verified that the line is now correct
in the DVI, PDF, HTML, and ASCII versions.

21 years agoMinor typo
Barry Warsaw [Sun, 20 Jul 2003 18:00:54 +0000 (18:00 +0000)]
Minor typo

21 years agoSF bug #774411: Typo in socket documentation
Raymond Hettinger [Sun, 20 Jul 2003 01:10:15 +0000 (01:10 +0000)]
SF bug #774411: Typo in socket documentation