]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
22 years agoBackport checkin:
Walter Dörwald [Fri, 15 Aug 2003 15:01:26 +0000 (15:01 +0000)] 
Backport checkin:
Fix another refcounting leak (in PyUnicode_DecodeUnicodeEscape()).

22 years agoBackport my fix to my fix:
Michael W. Hudson [Fri, 15 Aug 2003 12:26:05 +0000 (12:26 +0000)] 
Backport my fix to my fix:
My last fix left n used unitialized in tha a==b case.
Fix, by not using n at all in that case.

22 years agoBackport checkin:
Walter Dörwald [Thu, 14 Aug 2003 21:00:28 +0000 (21:00 +0000)] 
Backport checkin:
Fix refcount leak in the UnicodeError constructor:
When parsing the constructor arguments failed, a
reference to the argument tuple was leaked.

22 years agoBackport checkins:
Walter Dörwald [Thu, 14 Aug 2003 20:26:44 +0000 (20:26 +0000)] 
Backport checkins:
Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfaces
when an encoding error occurs and the callback name is unknown,
i.e. when the callback has to be called. The problem was that
the fact that the callback has already been looked up was only
recorded in a local variable in charmap_encoding_error(), because
charmap_encoding_error() got it's own copy of the errorHandler
pointer instead of a pointer to the pointer in
PyUnicode_EncodeCharmap().

22 years agoSF patch #787929: reflect the introduce of boolean type(libcfgparser.tex)
Raymond Hettinger [Thu, 14 Aug 2003 20:01:40 +0000 (20:01 +0000)] 
SF patch #787929:  reflect the introduce of boolean type(libcfgparser.tex)
(Contributed by George Yoshida.)

22 years agoAnd backport-2-3-4:
Michael W. Hudson [Thu, 14 Aug 2003 17:25:59 +0000 (17:25 +0000)] 
And backport-2-3-4:
Fix reference leak noted in test_types:
Check for a[:] = a _before_ calling PySequence_Fast on a.

22 years ago- IDLE didn't start correctly when Python was installed in "Program Files"
Kurt B. Kaiser [Thu, 14 Aug 2003 15:15:02 +0000 (15:15 +0000)] 
- IDLE didn't start correctly when Python was installed in "Program Files"
  on W2K and XP.  Python Bugs 780451, 784183

22 years agoBackport checkins:
Walter Dörwald [Tue, 12 Aug 2003 17:38:22 +0000 (17:38 +0000)] 
Backport checkins:
* Enhance message for UnicodeEncodeError and UnicodeTranslateError.
  If there is only one bad character it will now be printed in a
  form that is a valid Python string.
* Add a unicode prefix to the characters in the UnicodeEncodeError
  and UnicodeTranslateError message.

22 years agoSF patch#786531 'the the' typo. Contributed by George Yoshida
Raymond Hettinger [Tue, 12 Aug 2003 00:01:16 +0000 (00:01 +0000)] 
SF patch#786531 'the the' typo.  Contributed by George Yoshida

22 years agoSF patch#786531 'the the' typo. Contributed by George Yoshida
Raymond Hettinger [Mon, 11 Aug 2003 23:43:04 +0000 (23:43 +0000)] 
SF patch#786531 'the the' typo.  Contributed by George Yoshida

22 years agoRepeat my refcount & cut&paste fixes on the branch.
Michael W. Hudson [Mon, 11 Aug 2003 12:21:40 +0000 (12:21 +0000)] 
Repeat my refcount & cut&paste fixes on the branch.

22 years agoUnconditionally opening the temp file in text mode causes this test to fail
Jason Tishler [Mon, 11 Aug 2003 12:13:45 +0000 (12:13 +0000)] 
Unconditionally opening the temp file in text mode causes this test to fail
under Cygwin. The attached patch corrects this problem.

I tested this patch under Red Hat Linux 8.0 too.

22 years agoVersion number was wrong (2.3b1). Fixed.
Jack Jansen [Mon, 11 Aug 2003 11:16:09 +0000 (11:16 +0000)] 
Version number was wrong (2.3b1). Fixed.

22 years agoAdd note of closing of bug #783952.
Brett Cannon [Mon, 11 Aug 2003 07:21:03 +0000 (07:21 +0000)] 
Add note of closing of bug #783952.

22 years agoFix bug where handling issue of time.tzname[0] == time.tzname[1] and
Brett Cannon [Mon, 11 Aug 2003 07:19:06 +0000 (07:19 +0000)] 
Fix bug where handling issue of time.tzname[0] == time.tzname[1] and
time.daylight were all true.  Add an explicit test for this issue.

Closes bug #783952 .

22 years agoSF bug #778964: bad seed in python 2.3 random
Raymond Hettinger [Sat, 9 Aug 2003 18:20:16 +0000 (18:20 +0000)] 
SF bug #778964:  bad seed in python 2.3 random

The default seed is time.time().
Multiplied by 256 before truncating so that fractional seconds are used.
This way, two consequetive calls to random.seed() are much more likely
to produce different sequences.

22 years agoAdd HIDDEN. Fixes #777664.
Martin v. Löwis [Sat, 9 Aug 2003 09:53:51 +0000 (09:53 +0000)] 
Add HIDDEN. Fixes #777664.

22 years agoAdd HIDDEN. Fixes #777664.
Martin v. Löwis [Sat, 9 Aug 2003 09:53:51 +0000 (09:53 +0000)] 
Add HIDDEN. Fixes #777664.

22 years agoMove initialization of sys.std{in,out}.encoding to Py_Initialize.
Martin v. Löwis [Sat, 9 Aug 2003 09:48:29 +0000 (09:48 +0000)] 
Move initialization of sys.std{in,out}.encoding to Py_Initialize.
Verify that the encoding actually exists. Fixes #775985.

22 years agoPatch #771998: Put braces around variables.
Martin v. Löwis [Sat, 9 Aug 2003 09:07:56 +0000 (09:07 +0000)] 
Patch #771998: Put braces around variables.

22 years agoSF patch #783807: Clarify PySequence_Setitem ref counting
Raymond Hettinger [Sat, 9 Aug 2003 04:38:25 +0000 (04:38 +0000)] 
SF patch #783807:  Clarify PySequence_Setitem ref counting
(Contributed by Jay T Miller.)

22 years agoIDLEfork Bug 782759 config-main.def user configuration doc incorrect
Kurt B. Kaiser [Sat, 9 Aug 2003 03:10:01 +0000 (03:10 +0000)] 
IDLEfork Bug 782759 config-main.def user configuration doc incorrect

22 years agoExplain argument unpacking
Raymond Hettinger [Fri, 8 Aug 2003 23:31:35 +0000 (23:31 +0000)] 
Explain argument unpacking

22 years agoSF bug #770485: cStringIO does not set closed attr
Raymond Hettinger [Fri, 8 Aug 2003 12:22:30 +0000 (12:22 +0000)] 
SF bug #770485: cStringIO does not set closed attr

22 years agoSF bug #775836: change 0,1 to False,True in dict.has_key doc
Raymond Hettinger [Fri, 8 Aug 2003 11:05:59 +0000 (11:05 +0000)] 
SF bug #775836: change 0,1 to False,True in dict.has_key doc

22 years agoImprove docs:
Raymond Hettinger [Fri, 8 Aug 2003 02:41:53 +0000 (02:41 +0000)] 
Improve docs:
* Simplify the pure python examples
* Add a quantify() example

22 years agoFix docstring for LocaleTime.
Brett Cannon [Fri, 8 Aug 2003 01:52:08 +0000 (01:52 +0000)] 
Fix docstring for LocaleTime.

22 years agoFix hyperlinks and one class reference.
Fred Drake [Thu, 7 Aug 2003 16:10:28 +0000 (16:10 +0000)] 
Fix hyperlinks and one class reference.
Backported from trunk, but to the right branch this time.

22 years agocontrol where this lands by default in dev/doc/ on python.org,
Fred Drake [Thu, 7 Aug 2003 16:05:08 +0000 (16:05 +0000)] 
control where this lands by default in dev/doc/ on python.org,
but check it in on the right branch this time

22 years agoAs penance for forgetting to flag my last checkins as bugfix candidates,
Michael W. Hudson [Thu, 7 Aug 2003 15:08:55 +0000 (15:08 +0000)] 
As penance for forgetting to flag my last checkins as bugfix candidates,
just do the backport.

These changes do not apply to release22-maint.

22 years agoRelease host name memory. Fixes #783312.
Martin v. Löwis [Thu, 7 Aug 2003 11:56:23 +0000 (11:56 +0000)] 
Release host name memory. Fixes #783312.

22 years agoFix wording of cache announcement.
Brett Cannon [Thu, 7 Aug 2003 05:27:42 +0000 (05:27 +0000)] 
Fix wording of cache announcement.

22 years agoRe-introduction of caching. Not thread-safe against the changing of locale
Brett Cannon [Wed, 6 Aug 2003 21:17:09 +0000 (21:17 +0000)] 
Re-introduction of caching.  Not thread-safe against the changing of locale
in the middle of executing time.strptime .  Added new tests for caching
mechanism; taken from 2.4 branch and tweaked appropriately.

22 years agoBackport doc update:
Raymond Hettinger [Wed, 6 Aug 2003 06:57:38 +0000 (06:57 +0000)] 
Backport doc update:

Clarified that TypeErrors can be raised by any
function (not just builtins).

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

22 years agoBackport SF bug #782369: Massive memory leak in array module
Raymond Hettinger [Wed, 6 Aug 2003 06:55:09 +0000 (06:55 +0000)] 
Backport 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".

22 years agoBackport typo fix
Raymond Hettinger [Wed, 6 Aug 2003 06:47:15 +0000 (06:47 +0000)] 
Backport typo fix

22 years agoDemonstrate and fix [ 783882 ] os.lstat crashes with Unicode filename.
Mark Hammond [Wed, 6 Aug 2003 02:47:57 +0000 (02:47 +0000)] 
Demonstrate and fix [ 783882 ] os.lstat crashes with Unicode filename.

Also checked in on trunk.

22 years agoRemove __floordiv__ test, as it's deprecated.
Walter Dörwald [Tue, 5 Aug 2003 16:12:09 +0000 (16:12 +0000)] 
Remove __floordiv__ test, as it's deprecated.

22 years agoBackport:
Walter Dörwald [Tue, 5 Aug 2003 16:01:08 +0000 (16:01 +0000)] 
Backport:
* Check both __div__ and __truediv__ in division tests.
  (From SF patch #543867)
* Remove useless import.

22 years agoPatch #781722: Reject AF_INET6 if IPv6 is disabled.
Martin v. Löwis [Tue, 5 Aug 2003 06:26:46 +0000 (06:26 +0000)] 
Patch #781722: Reject AF_INET6 if IPv6 is disabled.

22 years agoSupport trailing dots in DNS names. Fixes #782510.
Martin v. Löwis [Tue, 5 Aug 2003 06:20:23 +0000 (06:20 +0000)] 
Support trailing dots in DNS names. Fixes #782510.

22 years agoList recently-fixed bugs.
Martin v. Löwis [Tue, 5 Aug 2003 06:06:18 +0000 (06:06 +0000)] 
List recently-fixed bugs.

22 years agoCorrect URL for normalization file. Fixes #781065.
Martin v. Löwis [Tue, 5 Aug 2003 05:59:47 +0000 (05:59 +0000)] 
Correct URL for normalization file. Fixes #781065.

22 years agoPatch #781126: Fix markup for add_fallback.
Martin v. Löwis [Tue, 5 Aug 2003 05:54:48 +0000 (05:54 +0000)] 
Patch #781126: Fix markup for add_fallback.

22 years agoMake sure eol_convention is an ASCII string. Fixes #774680.
Martin v. Löwis [Tue, 5 Aug 2003 05:52:18 +0000 (05:52 +0000)] 
Make sure eol_convention is an ASCII string. Fixes #774680.

22 years agoBoilerplate for Python 2.3.1
Barry Warsaw [Mon, 4 Aug 2003 22:53:49 +0000 (22:53 +0000)] 
Boilerplate for Python 2.3.1

22 years agoBump version string.
Barry Warsaw [Mon, 4 Aug 2003 22:52:27 +0000 (22:52 +0000)] 
Bump version string.

22 years agoMerging release23-branch into the long-term Python 2.3 maintenance branch
Barry Warsaw [Mon, 4 Aug 2003 22:49:46 +0000 (22:49 +0000)] 
Merging release23-branch into the long-term Python 2.3 maintenance branch

22 years agoThis commit was manufactured by cvs2svn to create branch
cvs2svn [Mon, 4 Aug 2003 22:49:46 +0000 (22:49 +0000)] 
This commit was manufactured by cvs2svn to create branch
'release23-maint'.

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

22 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).

22 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

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

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

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

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

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

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

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

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

22 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).

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

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

22 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

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

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

22 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'.

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

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

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

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

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

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

22 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).

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

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

22 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).

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

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

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

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

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

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

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

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

22 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

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

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

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

22 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

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

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

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

22 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).

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

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

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

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

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

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