]> granicus.if.org Git - python/log
python
17 years agoBackport 58618:
Neal Norwitz [Wed, 24 Oct 2007 03:52:50 +0000 (03:52 +0000)]
Backport 58618:
Issue 1307 by Derek Shockey, fix the same bug for RCPT.

17 years agoBug #1313, fix typo (wrong variable name) in example.
Neal Norwitz [Tue, 23 Oct 2007 05:42:38 +0000 (05:42 +0000)]
Bug #1313, fix typo (wrong variable name) in example.

17 years agoBackport 58594:
Neal Norwitz [Tue, 23 Oct 2007 05:35:11 +0000 (05:35 +0000)]
Backport 58594:
Issue #1307, patch by Derek Shockey.
When "MAIL" is received without args, an exception happens instead of
sending a 501 syntax error response.

17 years agoBackport r58545.
Georg Brandl [Fri, 19 Oct 2007 17:39:18 +0000 (17:39 +0000)]
Backport r58545.

17 years agoBackport r58542.
Georg Brandl [Fri, 19 Oct 2007 12:34:20 +0000 (12:34 +0000)]
Backport r58542.

17 years agoBackport 58539: squelch the warning that this test is intended to raise.
Gregory P. Smith [Fri, 19 Oct 2007 07:35:22 +0000 (07:35 +0000)]
Backport 58539: squelch the warning that this test is intended to raise.

17 years agoBackport 58532, 58533, 58534:
Gregory P. Smith [Thu, 18 Oct 2007 17:15:20 +0000 (17:15 +0000)]
Backport 58532, 58533, 58534:
 - Fix bsddb.dbtables: Don't randomly corrupt newly inserted rows by
   picking a rowid string with null bytes in it.  Such rows could not
   later be deleted, modified or individually selected.  Existing
   bsdTableDb databases created with such rows are out of luck.
 - Use mkdtemp for the test_dbtables test database environment and
   clean it up afterwards using shutil.rmtree.

17 years agoBackport 58450: fix uncollectable reference leak in bsddb.db.DBShelf.append
Gregory P. Smith [Sat, 13 Oct 2007 23:05:54 +0000 (23:05 +0000)]
Backport 58450: fix uncollectable reference leak in bsddb.db.DBShelf.append

17 years agoFix email example.
Georg Brandl [Sat, 13 Oct 2007 13:19:45 +0000 (13:19 +0000)]
Fix email example.

17 years agoMerge trunk 58434:
Gregory P. Smith [Fri, 12 Oct 2007 18:49:36 +0000 (18:49 +0000)]
Merge trunk 58434:
Fixes http://bugs.python.org/issue1233 - bsddb.dbshelve.DBShelf.append
was useless due to inverted logic.  Also adds a test case for RECNO dbs
to test_dbshelve.

17 years agoSilence a compiler warning about a function definition not being a prototype.
Brett Cannon [Fri, 12 Oct 2007 17:41:08 +0000 (17:41 +0000)]
Silence a compiler warning about a function definition not being a prototype.

17 years agoBug #1216: Restore support for Visual Studio 2002.
Martin v. Löwis [Fri, 12 Oct 2007 08:58:48 +0000 (08:58 +0000)]
Bug #1216: Restore support for Visual Studio 2002.

17 years agoFix ctypes on 32-bit systems when Python is configured --with-system-ffi.
Thomas Heller [Fri, 12 Oct 2007 06:53:32 +0000 (06:53 +0000)]
Fix ctypes on 32-bit systems when Python is configured --with-system-ffi.
See also https://bugs.launchpad.net/bugs/72505.

17 years agoBackport 58424:
Neal Norwitz [Fri, 12 Oct 2007 03:59:09 +0000 (03:59 +0000)]
Backport 58424:
Fix Coverity 185-186:  If the passed in FILE is NULL, uninitialized memory
would be accessed.

17 years agoBackport 58385 from trunk: fix a double free bug in the _bsddb module
Gregory P. Smith [Tue, 9 Oct 2007 07:25:24 +0000 (07:25 +0000)]
Backport 58385 from trunk: fix a double free bug in the _bsddb module
on DBCursor.get (and a friends) when passing in a string key.

17 years agoBackport rev 58343: fix DBSequence.get_key() to not crash/fail/etc.
Gregory P. Smith [Sat, 6 Oct 2007 16:05:18 +0000 (16:05 +0000)]
Backport rev 58343: fix DBSequence.get_key() to not crash/fail/etc.

17 years agoBackport 58348: use a reliable host in the test.
Gregory P. Smith [Sat, 6 Oct 2007 15:55:25 +0000 (15:55 +0000)]
Backport 58348: use a reliable host in the test.

17 years agoBackport 58344: allow BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module
Gregory P. Smith [Sat, 6 Oct 2007 08:11:29 +0000 (08:11 +0000)]
Backport 58344: allow BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module

17 years agoBackport 58332: Fix Coverity #159.
Neal Norwitz [Fri, 5 Oct 2007 05:05:24 +0000 (05:05 +0000)]
Backport 58332: Fix Coverity #159.

This code was broken if save() returned a negative number since i contained
a boolean value and then we compared i < 0 which should never be true.

17 years agoBackport 58330:
Neal Norwitz [Fri, 5 Oct 2007 03:45:42 +0000 (03:45 +0000)]
Backport 58330:
Fix Coverity #158: Check the correct variable.

17 years agomove descriptions of ac_(in|out)_buffer_size to the right place
Fred Drake [Fri, 5 Oct 2007 03:12:00 +0000 (03:12 +0000)]
move descriptions of ac_(in|out)_buffer_size to the right place
http://bugs.python.org/issue1053

17 years ago#1196: document default radix for int().
Georg Brandl [Mon, 24 Sep 2007 17:58:18 +0000 (17:58 +0000)]
#1196: document default radix for int().

17 years agoFix -- being converted to - in HTML. #1186.
Georg Brandl [Mon, 24 Sep 2007 17:56:12 +0000 (17:56 +0000)]
Fix -- being converted to - in HTML. #1186.

17 years agoFix #1169: remove docstrings in functions for -OO.
Georg Brandl [Wed, 19 Sep 2007 06:37:26 +0000 (06:37 +0000)]
Fix #1169: remove docstrings in functions for -OO.
 (backport from rev. 58204)

17 years agoissue1172: Documentation of "done" attribute in cgi module.
Sean Reifscheider [Tue, 18 Sep 2007 23:38:15 +0000 (23:38 +0000)]
issue1172: Documentation of "done" attribute in cgi module.

17 years agoissue1082: Fixing system and platform names for Vista.
Sean Reifscheider [Mon, 17 Sep 2007 20:58:46 +0000 (20:58 +0000)]
issue1082: Fixing system and platform names for Vista.

17 years agoissue1140: Guido's patch from revision 58098 (2.6) applied to 2.5.
Sean Reifscheider [Mon, 17 Sep 2007 09:43:11 +0000 (09:43 +0000)]
issue1140: Guido's patch from revision 58098 (2.6) applied to 2.5.

17 years agoissue1597011: Fix for bz2 module corner-case error due to error checking bug.
Sean Reifscheider [Mon, 17 Sep 2007 05:45:20 +0000 (05:45 +0000)]
issue1597011: Fix for bz2 module corner-case error due to error checking bug.

17 years agoctypes.util.find_library uses dump(1) instead of objdump(1) on Solaris.
Thomas Heller [Fri, 14 Sep 2007 20:05:26 +0000 (20:05 +0000)]
ctypes.util.find_library uses dump(1) instead of objdump(1) on Solaris.
Fixes issue #1777530; backported from trunk.

17 years agoBackport 58150: Rename debug import lib to _msi_d.lib.
Martin v. Löwis [Fri, 14 Sep 2007 07:02:51 +0000 (07:02 +0000)]
Backport 58150: Rename debug import lib to _msi_d.lib.

17 years agoBackport r58149: Clean Release projects as well.
Martin v. Löwis [Fri, 14 Sep 2007 07:01:59 +0000 (07:01 +0000)]
Backport r58149: Clean Release projects as well.

17 years agoAdd 2.5 MSI builder.
Martin v. Löwis [Thu, 13 Sep 2007 18:26:13 +0000 (18:26 +0000)]
Add 2.5 MSI builder.

17 years agoBug #1153: repr.repr() now doesn't require set and dictionary items
Georg Brandl [Wed, 12 Sep 2007 19:00:10 +0000 (19:00 +0000)]
Bug #1153: repr.repr() now doesn't require set and dictionary items
to be orderable to properly represent them.
 (backport from rev. 58122)

17 years agobug #1154: release memory allocated by "es" PyArg_ParseTuple format specifier.
Georg Brandl [Wed, 12 Sep 2007 18:29:21 +0000 (18:29 +0000)]
bug #1154: release memory allocated by "es" PyArg_ParseTuple format specifier.
 (backport from rev. 58119)

17 years agoFix #1139: PyFile_Encoding really is PyFile_SetEncoding.
Georg Brandl [Wed, 12 Sep 2007 18:11:03 +0000 (18:11 +0000)]
Fix #1139: PyFile_Encoding really is PyFile_SetEncoding.
(backport from rev. 58117).

17 years agoFix #1122: wrong return type documented for various _Size() functions.
Georg Brandl [Wed, 12 Sep 2007 18:08:54 +0000 (18:08 +0000)]
Fix #1122: wrong return type documented for various _Size() functions.
(backport from rev. 58115).

17 years agoCause passing a string to generator.throw() to raise a deprecation warning.
Brett Cannon [Tue, 11 Sep 2007 21:12:14 +0000 (21:12 +0000)]
Cause passing a string to generator.throw() to raise a deprecation warning.

17 years agoBackport: #1095: ln -f doesn't work portably.
Georg Brandl [Fri, 7 Sep 2007 20:12:59 +0000 (20:12 +0000)]
Backport: #1095: ln -f doesn't work portably.

17 years agobackport of r58023 to fix unit test suite issue1112 on windows
Gregory P. Smith [Thu, 6 Sep 2007 23:01:32 +0000 (23:01 +0000)]
backport of r58023 to fix unit test suite issue1112 on windows

17 years agoFix typo: c_float represents to C float type.
Thomas Heller [Thu, 6 Sep 2007 20:26:03 +0000 (20:26 +0000)]
Fix typo:  c_float represents to C float type.

17 years agoBackport of r58004.
Armin Rigo [Thu, 6 Sep 2007 08:35:34 +0000 (08:35 +0000)]
Backport of r58004.

17 years agoPatch #786737: Allow building in a tree of symlinks pointing to
Martin v. Löwis [Wed, 5 Sep 2007 11:47:22 +0000 (11:47 +0000)]
Patch #786737: Allow building in a tree of symlinks pointing to
a readonly source.

17 years ago- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
Matthias Klose [Wed, 5 Sep 2007 06:45:57 +0000 (06:45 +0000)]
- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
  to include some information about the build environment.

17 years agoPatch #1105: Explain that one needs to build the solution
Martin v. Löwis [Wed, 5 Sep 2007 06:39:02 +0000 (06:39 +0000)]
Patch #1105: Explain that one needs to build the solution
to get dependencies right.

17 years ago- Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*.
Matthias Klose [Tue, 4 Sep 2007 23:47:16 +0000 (23:47 +0000)]
- Fix libffi configure for hppa*-*-linux* | parisc*-*-linux*.

17 years agoPatch #1031213: Decode source line in SyntaxErrors back to its original
Martin v. Löwis [Tue, 4 Sep 2007 14:20:25 +0000 (14:20 +0000)]
Patch #1031213: Decode source line in SyntaxErrors back to its original
source encoding.

17 years ago- Added support for linking the bsddb module against BerkeleyDB 4.6.x.
Matthias Klose [Mon, 3 Sep 2007 22:13:48 +0000 (22:13 +0000)]
- Added support for linking the bsddb module against BerkeleyDB 4.6.x.

17 years agoBackport of rev. 57904
Ronald Oussoren [Sun, 2 Sep 2007 09:48:20 +0000 (09:48 +0000)]
Backport of rev. 57904

17 years agoBug #1737210: Change Manufacturer of Windows installer to PSF.
Martin v. Löwis [Sat, 1 Sep 2007 06:36:38 +0000 (06:36 +0000)]
Bug #1737210: Change Manufacturer of Windows installer to PSF.

17 years agoMark registry components as 64-bit on Win64.
Martin v. Löwis [Fri, 31 Aug 2007 10:00:06 +0000 (10:00 +0000)]
Mark registry components as 64-bit on Win64.

17 years agoWarn about possible risks when extracting untrusted archives.
Lars Gustäbel [Thu, 30 Aug 2007 20:25:13 +0000 (20:25 +0000)]
Warn about possible risks when extracting untrusted archives.

17 years agoBug #1709599: Run test_1565150 only if the file system is NTFS.
Martin v. Löwis [Thu, 30 Aug 2007 18:58:29 +0000 (18:58 +0000)]
Bug #1709599: Run test_1565150 only if the file system is NTFS.

17 years agoBug #1746880: Correctly install DLLs into system32 folder on Win64.
Martin v. Löwis [Thu, 30 Aug 2007 18:37:41 +0000 (18:37 +0000)]
Bug #1746880: Correctly install DLLs into system32 folder on Win64.

17 years ago.
Skip Montanaro [Wed, 29 Aug 2007 01:34:15 +0000 (01:34 +0000)]
.

17 years agobackport r57626
Skip Montanaro [Tue, 28 Aug 2007 23:26:55 +0000 (23:26 +0000)]
backport r57626

17 years agoTarFile.__init__() no longer fails if no name argument is passed and
Lars Gustäbel [Tue, 28 Aug 2007 12:33:15 +0000 (12:33 +0000)]
TarFile.__init__() no longer fails if no name argument is passed and
the fileobj argument has no usable name attribute (e.g. StringIO).

(backported from r57616)

17 years agoBackport this change to get test_sqlite working on Macs. Same change Thomas
Skip Montanaro [Mon, 27 Aug 2007 03:00:59 +0000 (03:00 +0000)]
Backport this change to get test_sqlite working on Macs.  Same change Thomas
made to the trunk awhile ago I believe.

17 years agoBug #1010: docs url points to SF.net, now points to bugs.python.org.
Georg Brandl [Fri, 24 Aug 2007 17:20:41 +0000 (17:20 +0000)]
Bug #1010: docs url points to SF.net, now points to bugs.python.org.

17 years agoBug #1765375: fix stripping of unwanted LDFLAGS.
Georg Brandl [Fri, 24 Aug 2007 11:48:37 +0000 (11:48 +0000)]
Bug #1765375: fix stripping of unwanted LDFLAGS.
 (backport from rev. 57389)

17 years agoOn systems with both the ancient bsddb 1.85 library and a recent BerkeleyDB 4.x
Gregory P. Smith [Fri, 24 Aug 2007 05:38:31 +0000 (05:38 +0000)]
On systems with both the ancient bsddb 1.85 library and a recent BerkeleyDB 4.x
library installed both were detected so both modules were enabled.  But the include
path causes the recent BerkeleyDB's db.h file to be included causing the bsddb185
compile to fail.  This disables building bsddb185 when both are present.

17 years agobackport of r57378 to fix bug 1725856
Gregory P. Smith [Fri, 24 Aug 2007 05:26:15 +0000 (05:26 +0000)]
backport of r57378 to fix bug 1725856

17 years agoBackport fix of #1752175.
Georg Brandl [Thu, 23 Aug 2007 18:08:33 +0000 (18:08 +0000)]
Backport fix of #1752175.

17 years agoBug #1766421: "return code" vs. "status code".
Georg Brandl [Thu, 23 Aug 2007 17:57:53 +0000 (17:57 +0000)]
Bug #1766421: "return code" vs. "status code".

17 years agoBack port of r57286 from py3k and trunk
Gregory P. Smith [Thu, 23 Aug 2007 05:05:12 +0000 (05:05 +0000)]
Back port of r57286 from py3k and trunk
  ------------------------------------------------------------------------
  r57286 | gregory.p.smith | 2007-08-22 14:32:34 -0700 (Wed, 22 Aug 2007) | 3 lines

  stop leaving log.0000001 __db.00* and xxx.db turds in developer
  sandboxes when bsddb3 tests are run.

17 years agoFix a typo in a comment
Neal Norwitz [Tue, 21 Aug 2007 04:55:11 +0000 (04:55 +0000)]
Fix a typo in a comment

17 years ago- mark the findCaller 2-element tuple/3-element tuple change as new in 2.4
Matthias Klose [Thu, 16 Aug 2007 12:00:56 +0000 (12:00 +0000)]
- mark the findCaller 2-element tuple/3-element tuple change as new in 2.4

17 years agoFix #1771558 (already fixed in trunk).
Georg Brandl [Fri, 10 Aug 2007 17:29:51 +0000 (17:29 +0000)]
Fix #1771558 (already fixed in trunk).

17 years agoFix compilation warning.
Georg Brandl [Wed, 8 Aug 2007 13:50:04 +0000 (13:50 +0000)]
Fix compilation warning.
 (backport from rev. 56833)

17 years agoRevert the fix for #1548891, it broke backwards compatibility with arbitrary read...
Georg Brandl [Wed, 8 Aug 2007 13:03:45 +0000 (13:03 +0000)]
Revert the fix for #1548891, it broke backwards compatibility with arbitrary read buffers.
Fixes #1730114.
 (backport from rev. 56830)

17 years agoBug #1769002: fix a now-wrong sentence in the tutorial.
Georg Brandl [Tue, 7 Aug 2007 07:13:27 +0000 (07:13 +0000)]
Bug #1769002: fix a now-wrong sentence in the tutorial.
 (backport from rev. 56797)

17 years agoBackport from trunk r56727:
Hye-Shik Chang [Sat, 4 Aug 2007 04:15:04 +0000 (04:15 +0000)]
Backport from trunk r56727:
Fix gb18030 codec's bug that doesn't map two-byte characters on
GB18030 extension in encoding. (bug reported by Bjorn Stabell)

17 years ago- Allow Emacs 22 for building the documentation in info format.
Matthias Klose [Thu, 2 Aug 2007 21:28:57 +0000 (21:28 +0000)]
- Allow Emacs 22 for building the documentation in info format.

17 years agoDefine _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+.
Martin v. Löwis [Tue, 31 Jul 2007 19:54:20 +0000 (19:54 +0000)]
Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+.

17 years agoBug #1763149: use proper slice syntax in docstring.
Georg Brandl [Sun, 29 Jul 2007 17:37:22 +0000 (17:37 +0000)]
Bug #1763149: use proper slice syntax in docstring.
 (backport)

17 years agotry-except-finally is new in 2.5.
Georg Brandl [Sun, 29 Jul 2007 09:11:19 +0000 (09:11 +0000)]
try-except-finally is new in 2.5.
 (backport from rev. 56614)

17 years agoClarify PEP 343 description.
Georg Brandl [Sun, 29 Jul 2007 08:26:15 +0000 (08:26 +0000)]
Clarify PEP 343 description.
 (backport from rev. 56611)

17 years agoBug #1704793: Raise KeyError if unicodedata.lookup cannot
Martin v. Löwis [Sat, 28 Jul 2007 07:01:43 +0000 (07:01 +0000)]
Bug #1704793: Raise KeyError if unicodedata.lookup cannot
represent the result in a single character.

17 years agoMac Buildscript:
Ronald Oussoren [Thu, 26 Jul 2007 21:39:36 +0000 (21:39 +0000)]
Mac Buildscript:
- be more strict about the build environment
- update some 3th party libraries

17 years agotabs, newlines and crs are valid XML characters.
Georg Brandl [Thu, 26 Jul 2007 09:36:28 +0000 (09:36 +0000)]
tabs, newlines and crs are valid XML characters.
 (backport from rev. 56551)

17 years agoChange location of the package index to pypi.python.org/pypi.
Martin v. Löwis [Wed, 25 Jul 2007 16:24:08 +0000 (16:24 +0000)]
Change location of the package index to pypi.python.org/pypi.

17 years agoAdd description for wave.setcomptype() values
Georg Brandl [Wed, 18 Jul 2007 22:36:55 +0000 (22:36 +0000)]
Add description for wave.setcomptype() values
 (backport from rev. 56451)

17 years ago[Backport of r56382]
Andrew M. Kuchling [Sat, 14 Jul 2007 22:06:30 +0000 (22:06 +0000)]
[Backport of r56382]
Avoid exception if there's a stray directory inside a Maildir folder.

The Maildir specification doesn't seem to say anything about this
situation, and it can happen if you're keeping a Maildir mailbox in
Subversion (.svn directories) or some similar system.  The patch just
ignores directories in the cur/, new/, tmp/ folders.

17 years agoTypo fix
Andrew M. Kuchling [Sat, 14 Jul 2007 20:58:23 +0000 (20:58 +0000)]
Typo fix

17 years agoClarify webbrowser.open description.
Georg Brandl [Sat, 14 Jul 2007 17:32:47 +0000 (17:32 +0000)]
Clarify webbrowser.open description.
 (backport from rev. 56366)

17 years agoBug #1753406: missing \versionadded for subprocess.check_call.
Georg Brandl [Sat, 14 Jul 2007 17:12:27 +0000 (17:12 +0000)]
Bug #1753406: missing \versionadded for subprocess.check_call.
 (backport from rev. 56364)

17 years agoBackport 56345
Raymond Hettinger [Sat, 14 Jul 2007 11:31:35 +0000 (11:31 +0000)]
Backport 56345

17 years agoIn response to this SF bug:
Barry Warsaw [Fri, 13 Jul 2007 21:20:38 +0000 (21:20 +0000)]
In response to this SF bug:

1752723 ] email.message_from_string: initial line gets discarded

I added a test to assert that when the first line of text passed to
message_from_string() contains a leading space, the message ends up with the
appropriate FirstHeaderLineIsContinuationDefect on its defects list.

The bug is invalid.

17 years agoPyType_stgdict() returns a borrowed reference which must not be
Thomas Heller [Fri, 13 Jul 2007 19:52:41 +0000 (19:52 +0000)]
PyType_stgdict() returns a borrowed reference which must not be
Py_DECREF'd.

17 years agoNews entry for
Thomas Heller [Fri, 13 Jul 2007 17:36:01 +0000 (17:36 +0000)]
News entry for
Fix for SF# 1649098: avoid zero-sized array declaration in structure.

17 years agoFix for SF# 1649098: avoid zero-sized array declaration in structure.
Thomas Heller [Fri, 13 Jul 2007 17:33:13 +0000 (17:33 +0000)]
Fix for SF# 1649098: avoid zero-sized array declaration in structure.

17 years agoFix for SF# 1701409: segfault in c_char_p of ctypes. The repr output
Thomas Heller [Fri, 13 Jul 2007 17:07:55 +0000 (17:07 +0000)]
Fix for SF# 1701409: segfault in c_char_p of ctypes.  The repr output
of c_char_p and c_wchar_p has changed as a sideeffect.

17 years agoBug #1637365: add subsection about "__name__ == __main__" to the
Georg Brandl [Thu, 12 Jul 2007 09:37:53 +0000 (09:37 +0000)]
Bug #1637365: add subsection about "__name__ == __main__" to the
Python tutorial.
 (backport from rev. 56306)

17 years agoPatch #1731659: improve time.strptime docs.
Georg Brandl [Thu, 12 Jul 2007 09:06:43 +0000 (09:06 +0000)]
Patch #1731659: improve time.strptime docs.
 (backport from rev. 56302)

17 years agoPatch #1673759: add a missing overflow check when formatting floats
Georg Brandl [Thu, 12 Jul 2007 08:38:04 +0000 (08:38 +0000)]
Patch #1673759: add a missing overflow check when formatting floats
with %G.
 (backport from rev. 56298)

17 years agoPatch #1739696: use code.co_code only if really necessary
Georg Brandl [Thu, 12 Jul 2007 08:11:32 +0000 (08:11 +0000)]
Patch #1739696: use code.co_code only if really necessary
 (backport from rev. 56296)

17 years agoPatch #1752270, #1750931: complain if urllib2 add_handler called
Georg Brandl [Thu, 12 Jul 2007 08:05:48 +0000 (08:05 +0000)]
Patch #1752270, #1750931: complain if urllib2 add_handler called
without handler.
 (backport from rev. 56293)

17 years agoFix #1752132: wrong comment in opcode description.
Georg Brandl [Wed, 11 Jul 2007 19:41:53 +0000 (19:41 +0000)]
Fix #1752132: wrong comment in opcode description.
 (backport from rev. 56280)

17 years agoPatch 1673122: be explicit about which libtool to use, to avoid name clashes
Ronald Oussoren [Mon, 9 Jul 2007 08:40:34 +0000 (08:40 +0000)]
Patch 1673122: be explicit about which libtool to use, to avoid name clashes
when a users install GNU libtool early in his PATH

17 years agoPatch 1693258: Fix for duplicate "preferences" menu-OS X
Ronald Oussoren [Mon, 9 Jul 2007 06:03:47 +0000 (06:03 +0000)]
Patch 1693258: Fix for duplicate "preferences" menu-OS X

Backport of 56204.

17 years agoFixes IDLE crash on OSX: some versions of Tcl/Tk on OSX don't have a
Ronald Oussoren [Mon, 9 Jul 2007 05:46:04 +0000 (05:46 +0000)]
Fixes IDLE crash on OSX: some versions of Tcl/Tk on OSX don't have a
console object, avoid crashing in that case.