]> granicus.if.org Git - python/log
python
17 years agoFix typo.
Martin v. Löwis [Thu, 30 Aug 2007 18:15:22 +0000 (18:15 +0000)]
Fix typo.

17 years agoFix popen usage.
Martin v. Löwis [Thu, 30 Aug 2007 18:14:01 +0000 (18:14 +0000)]
Fix popen usage.

17 years agoadded note on new ssl module and deprecation of socket.ssl
Bill Janssen [Thu, 30 Aug 2007 18:08:06 +0000 (18:08 +0000)]
added note on new ssl module and deprecation of socket.ssl

17 years agoAdded docstrings to methods and functions.
Bill Janssen [Thu, 30 Aug 2007 17:07:28 +0000 (17:07 +0000)]
Added docstrings to methods and functions.

17 years agoSet startinpos before calling the error handler.
Walter Dörwald [Thu, 30 Aug 2007 15:34:55 +0000 (15:34 +0000)]
Set startinpos before calling the error handler.

17 years agoRewrap line.
Walter Dörwald [Thu, 30 Aug 2007 15:30:09 +0000 (15:30 +0000)]
Rewrap line.

17 years agoAdded more cross-references.
Mark Summerfield [Thu, 30 Aug 2007 15:03:03 +0000 (15:03 +0000)]
Added more cross-references.

17 years ago* Skip test_pipes on non-POSIX.
Georg Brandl [Thu, 30 Aug 2007 12:32:23 +0000 (12:32 +0000)]
* Skip test_pipes on non-POSIX.
* Don't raise TestSkipped within a test function.

17 years agoPatch #1680959: add test suite for pipes module.
Georg Brandl [Thu, 30 Aug 2007 10:38:56 +0000 (10:38 +0000)]
Patch #1680959: add test suite for pipes module.

17 years agoStronger urge to convert filenames to str before using them as argument to ZipFile...
Georg Brandl [Thu, 30 Aug 2007 10:09:42 +0000 (10:09 +0000)]
Stronger urge to convert filenames to str before using them as argument to ZipFile.write().

17 years agoThis contains a number of things:
Bill Janssen [Wed, 29 Aug 2007 22:35:05 +0000 (22:35 +0000)]
This contains a number of things:

1) Improve the documentation of the SSL module, with a fuller
   explanation of certificate usage, another reference, proper
   formatting of this and that.

2) Fix Windows bug in ssl.py, and general bug in sslsocket.close().
   Remove some unused code from ssl.py.  Allow accept() to be called on
   sslsocket sockets.

3) Use try-except-else in import of ssl in socket.py.  Deprecate use of
   socket.ssl().

4) Remove use of socket.ssl() in every library module, except for
   test_socket_ssl.py and test_ssl.py.

17 years agoIgnore test failures caused by 'resource temporarily unavailable'
Facundo Batista [Wed, 29 Aug 2007 10:28:28 +0000 (10:28 +0000)]
Ignore test failures caused by 'resource temporarily unavailable'
exceptions raised during FailingServerTestCase tests.
[GSoC - Alan McIntyre]

17 years agoAdd Bill as a developer
Neal Norwitz [Wed, 29 Aug 2007 06:15:33 +0000 (06:15 +0000)]
Add Bill as a developer

17 years agoRecent items.
Skip Montanaro [Wed, 29 Aug 2007 01:33:45 +0000 (01:33 +0000)]
Recent items.

17 years agoInstall pygettext (once the scriptsinstall target is working again).
Skip Montanaro [Wed, 29 Aug 2007 01:24:11 +0000 (01:24 +0000)]
Install pygettext (once the scriptsinstall target is working again).

17 years agoFix test output.
Walter Dörwald [Tue, 28 Aug 2007 23:35:33 +0000 (23:35 +0000)]
Fix test output.

17 years agofixes 813986
Skip Montanaro [Tue, 28 Aug 2007 23:22:52 +0000 (23:22 +0000)]
fixes 813986

17 years agoAdd a crasher for the thread-unsafety of file objects.
Georg Brandl [Tue, 28 Aug 2007 18:54:44 +0000 (18:54 +0000)]
Add a crasher for the thread-unsafety of file objects.

17 years agoFix title endtag in HTMLCalender.formatyearpage(). Fix documentation for
Walter Dörwald [Tue, 28 Aug 2007 16:38:26 +0000 (16:38 +0000)]
Fix title endtag in HTMLCalender.formatyearpage(). Fix documentation for
HTMLCalender.formatyearpage() (there's no themonth parameter).

This fixes issue1046.

17 years agoImprove extended slicing support in builtin types and classes. Specifically:
Thomas Wouters [Tue, 28 Aug 2007 15:28:19 +0000 (15:28 +0000)]
Improve extended slicing support in builtin types and classes. Specifically:

 - Specialcase extended slices that amount to a shallow copy the same way as
   is done for simple slices, in the tuple, string and unicode case.

 - Specialcase step-1 extended slices to optimize the common case for all
   involved types.

 - For lists, allow extended slice assignment of differing lengths as long
   as the step is 1. (Previously, 'l[:2:1] = []' failed even though
   'l[:2] = []' and 'l[:2:None] = []' do not.)

 - Implement extended slicing for buffer, array, structseq, mmap and
   UserString.UserString.

 - Implement slice-object support (but not non-step-1 slice assignment) for
   UserString.MutableString.

 - Add tests for all new functionality.

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

(will backport to 2.5)

17 years agoFix some glitches.
Georg Brandl [Tue, 28 Aug 2007 10:48:18 +0000 (10:48 +0000)]
Fix some glitches.

17 years agoAdding basic imputil documentation.
Sean Reifscheider [Tue, 28 Aug 2007 09:07:54 +0000 (09:07 +0000)]
Adding basic imputil documentation.

17 years agoDocument rev. 57574.
Georg Brandl [Tue, 28 Aug 2007 08:29:08 +0000 (08:29 +0000)]
Document rev. 57574.

17 years agoNews about functools.reduce.
Guido van Rossum [Mon, 27 Aug 2007 20:52:10 +0000 (20:52 +0000)]
News about functools.reduce.

17 years agoPatch # 1739906 by Christian Heimes -- add reduce to functools (importing
Guido van Rossum [Mon, 27 Aug 2007 20:51:00 +0000 (20:51 +0000)]
Patch # 1739906 by Christian Heimes -- add reduce to functools (importing
it from __builtin__).

17 years agoPatch 10124 by Bill Janssen, docs for the new ssl code.
Guido van Rossum [Mon, 27 Aug 2007 19:11:11 +0000 (19:11 +0000)]
Patch 10124 by Bill Janssen, docs for the new ssl code.

17 years ago> Some of the code sets the error string in this directly before
Guido van Rossum [Mon, 27 Aug 2007 18:42:23 +0000 (18:42 +0000)]
> Some of the code sets the error string in this directly before
> returning NULL, and other pieces of the code call PySSL_SetError,
> which creates the error string.  I think some of the places which set
> the string directly probably shouldn't; instead, they should call
> PySSL_SetError to cons up the error name directly from the err code.
> However, PySSL_SetError only works after the construction of an ssl
> object, which means it can't be used there...  I'll take a longer look
> at it and see if there's a reasonable fix.

Here's a patch which addresses this.  It also fixes the indentation in
PySSL_SetError, bringing it into line with PEP 7, fixes a compile warning
about one of the OpenSSL macros, and makes the namespace a bit more
consistent.  I've tested it on FC 7 and OS X 10.4.

% ./python ./Lib/test/regrtest.py -R :1: -u all test_ssl
test_ssl
beginning 6 repetitions
123456
......
1 test OK.
[29244 refs]
%

[GvR: slightly edited to enforce 79-char line length, even if it required
 violating the style guide.]

17 years ago> Regardless, building a fixed test certificate and checking it in sounds like
Guido van Rossum [Mon, 27 Aug 2007 17:19:42 +0000 (17:19 +0000)]
> Regardless, building a fixed test certificate and checking it in sounds like
> the better option.  Then the openssl command in the test code can be turned
> into a comment describing how the test data was pregenerated.

Here's a patch that does that.

Bill

17 years agoIgnore test failures caused by 'resource temporarily unavailable'
Facundo Batista [Mon, 27 Aug 2007 01:15:34 +0000 (01:15 +0000)]
Ignore test failures caused by 'resource temporarily unavailable'
exceptions raised in the test server thread, since SimpleXMLRPCServer
does not gracefully handle them.  Changed number of requests handled
by tests server thread to one (was 2) because no tests require more
than one request. [GSoC - Alan McIntyre]

17 years agoIf we can't create a certificate, print a warning, but don't fail the test.
Neal Norwitz [Mon, 27 Aug 2007 01:15:33 +0000 (01:15 +0000)]
If we can't create a certificate, print a warning, but don't fail the test.
Modified patch from what Bill Janssen sent on python-3000.

17 years agoMake a utility function for handling (printing) an error
Neal Norwitz [Mon, 27 Aug 2007 01:03:18 +0000 (01:03 +0000)]
Make a utility function for handling (printing) an error

17 years agoStop using string.join (from the module) to ease upgrade to py3k
Neal Norwitz [Mon, 27 Aug 2007 00:58:33 +0000 (00:58 +0000)]
Stop using string.join (from the module) to ease upgrade to py3k

17 years agoAnother patch from Bill Janssen that:
Neal Norwitz [Sun, 26 Aug 2007 22:20:03 +0000 (22:20 +0000)]
Another patch from Bill Janssen that:
1)  Fixes the bug that two class names are initial-lower-case.
2)  Replaces the poll waiting for the server to become ready with
    a threading.Event signal.

17 years agoCatch IOError for when the device file doesn't exist or the user doesn't have
Neal Norwitz [Sun, 26 Aug 2007 22:16:23 +0000 (22:16 +0000)]
Catch IOError for when the device file doesn't exist or the user doesn't have
permission to write to the device.

17 years agoGet the test passing by commenting out some writes (should they be removed?)
Neal Norwitz [Sun, 26 Aug 2007 21:40:16 +0000 (21:40 +0000)]
Get the test passing by commenting out some writes (should they be removed?)

17 years agoBill Janssen wrote:
Guido van Rossum [Sun, 26 Aug 2007 19:35:09 +0000 (19:35 +0000)]
Bill Janssen wrote:
Here's a patch which makes test_ssl a better player in the buildbots
environment.  I deep-ended on "try-except-else" clauses.

17 years agoFail gracefully if the cert files cannot be created
Neal Norwitz [Sun, 26 Aug 2007 18:50:39 +0000 (18:50 +0000)]
Fail gracefully if the cert files cannot be created

17 years agoReap children before the test starts so hopefully SocketServer
Neal Norwitz [Sun, 26 Aug 2007 06:29:57 +0000 (06:29 +0000)]
Reap children before the test starts so hopefully SocketServer
won't find any old children left around which causes an exception
in collect_children() and the test to fail.

17 years agoSpell check (also americanify behaviour, it's almost 3 times as common)
Neal Norwitz [Sun, 26 Aug 2007 01:42:03 +0000 (01:42 +0000)]
Spell check (also americanify behaviour, it's almost 3 times as common)

17 years agoFix typo in docstring (missing c in reacquire)
Neal Norwitz [Sun, 26 Aug 2007 01:08:16 +0000 (01:08 +0000)]
Fix typo in docstring (missing c in reacquire)

17 years agokeep setup.py from listing unneeded hash modules (_md5, _sha*) as
Gregory P. Smith [Sun, 26 Aug 2007 00:26:00 +0000 (00:26 +0000)]
keep setup.py from listing unneeded hash modules (_md5, _sha*) as
missing when they were not built because _hashlib with openssl provided
their functionality instead.

don't build bsddb185 if bsddb was built.

17 years agoTry to get this test to pass for systems that do not have SO_REUSEPORT
Neal Norwitz [Sat, 25 Aug 2007 17:25:17 +0000 (17:25 +0000)]
Try to get this test to pass for systems that do not have SO_REUSEPORT

17 years agoFix a few more variables to try to get this to compile with Visual Studio.
Neal Norwitz [Sat, 25 Aug 2007 16:58:09 +0000 (16:58 +0000)]
Fix a few more variables to try to get this to compile with Visual Studio.

17 years agoFix test so it is skipped properly if there is no SSL support.
Neal Norwitz [Sat, 25 Aug 2007 16:54:38 +0000 (16:54 +0000)]
Fix test so it is skipped properly if there is no SSL support.

17 years agoTry to get this to build with Visual Studio by moving all the variable
Neal Norwitz [Sat, 25 Aug 2007 16:41:36 +0000 (16:41 +0000)]
Try to get this to build with Visual Studio by moving all the variable
declarations to the beginning of a scope.

17 years agoServer-side SSL and certificate validation, by Bill Janssen.
Guido van Rossum [Sat, 25 Aug 2007 15:08:43 +0000 (15:08 +0000)]
Server-side SSL and certificate validation, by Bill Janssen.
While cleaning up Bill's C style, I may have cleaned up some code
he didn't touch as well (in _ssl.c).

17 years agoFix bug 1764407 - the -i switch now does the right thing when using the -m switch
Nick Coghlan [Sat, 25 Aug 2007 10:50:41 +0000 (10:50 +0000)]
Fix bug 1764407 - the -i switch now does the right thing when using the -m switch

17 years agoRevert compile.c changes that shouldn't have been included in previous checkin
Nick Coghlan [Sat, 25 Aug 2007 04:35:54 +0000 (04:35 +0000)]
Revert compile.c changes that shouldn't have been included in previous checkin

17 years agoRevert misguided attempt at fixing incompatibility between -m and -i switches (better...
Nick Coghlan [Sat, 25 Aug 2007 04:32:07 +0000 (04:32 +0000)]
Revert misguided attempt at fixing incompatibility between -m and -i switches (better fix coming soon)

17 years agoMake test_structmembers pass when run with regrtests's -R flag.
Collin Winter [Fri, 24 Aug 2007 21:09:42 +0000 (21:09 +0000)]
Make test_structmembers pass when run with regrtests's -R flag.

17 years agoPort test_class to unittest. Patch #1671298.
Georg Brandl [Fri, 24 Aug 2007 19:33:53 +0000 (19:33 +0000)]
Port test_class to unittest. Patch #1671298.

17 years agoCatch the correct errors.
Georg Brandl [Fri, 24 Aug 2007 19:22:34 +0000 (19:22 +0000)]
Catch the correct errors.

17 years agoConvert test_pkg to use unittest.
Collin Winter [Fri, 24 Aug 2007 19:13:58 +0000 (19:13 +0000)]
Convert test_pkg to use unittest.

17 years agoConvert test_linuxaudiodev to unittest. Fix a wrong finally clause in test_ossaudiodev.
Georg Brandl [Fri, 24 Aug 2007 18:46:27 +0000 (18:46 +0000)]
Convert test_linuxaudiodev to unittest. Fix a wrong finally clause in test_ossaudiodev.

17 years agoRemove output file for test_ossaudiodev, also properly close the dsp object.
Georg Brandl [Fri, 24 Aug 2007 18:35:27 +0000 (18:35 +0000)]
Remove output file for test_ossaudiodev, also properly close the dsp object.

17 years agoRemove test_rgbimg output file, there is no test_rgbimg.py.
Georg Brandl [Fri, 24 Aug 2007 18:30:06 +0000 (18:30 +0000)]
Remove test_rgbimg output file, there is no test_rgbimg.py.

17 years agoDocument new utility functions in test_support.
Georg Brandl [Fri, 24 Aug 2007 18:27:43 +0000 (18:27 +0000)]
Document new utility functions in test_support.

17 years agoPort test_frozen to unittest.
Georg Brandl [Fri, 24 Aug 2007 18:22:54 +0000 (18:22 +0000)]
Port test_frozen to unittest.

17 years agoPatch #1008: port test_signal to unittest.
Georg Brandl [Fri, 24 Aug 2007 18:07:52 +0000 (18:07 +0000)]
Patch #1008: port test_signal to unittest.

17 years agoFix #1012: wrong URL to :mod:`site` in install/index.rst.
Georg Brandl [Fri, 24 Aug 2007 17:46:54 +0000 (17:46 +0000)]
Fix #1012: wrong URL to :mod:`site` in install/index.rst.

17 years agoPatch #1006: port test_winreg to unittest.
Georg Brandl [Fri, 24 Aug 2007 17:38:49 +0000 (17:38 +0000)]
Patch #1006: port test_winreg to unittest.

17 years agoBug #1011: fix rfc822.Message.getheader docs.
Georg Brandl [Fri, 24 Aug 2007 17:23:23 +0000 (17:23 +0000)]
Bug #1011: fix rfc822.Message.getheader docs.

17 years agoFix silly typo in test name.
Guido van Rossum [Fri, 24 Aug 2007 14:53:14 +0000 (14:53 +0000)]
Fix silly typo in test name.

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

17 years agouuid creation is now threadsafe, backport from py3k rev. 57375.
Georg Brandl [Fri, 24 Aug 2007 06:10:01 +0000 (06:10 +0000)]
uuid creation is now threadsafe, backport from py3k rev. 57375.

17 years agoFix bug 1725856.
Gregory P. Smith [Fri, 24 Aug 2007 05:11:38 +0000 (05:11 +0000)]
Fix bug 1725856.

17 years agoPatch #1779550: remove redundant code in logging.
Georg Brandl [Thu, 23 Aug 2007 21:55:57 +0000 (21:55 +0000)]
Patch #1779550: remove redundant code in logging.

17 years agoBug #1758696: more info about descriptors.
Georg Brandl [Thu, 23 Aug 2007 21:42:54 +0000 (21:42 +0000)]
Bug #1758696: more info about descriptors.

17 years agoBug #1625381: clarify match vs search introduction.
Georg Brandl [Thu, 23 Aug 2007 21:36:05 +0000 (21:36 +0000)]
Bug #1625381: clarify match vs search introduction.

17 years agoBug #1688564: document os.path.join's absolute path behavior in the docstring.
Georg Brandl [Thu, 23 Aug 2007 21:27:57 +0000 (21:27 +0000)]
Bug #1688564: document os.path.join's absolute path behavior in the docstring.

17 years agoBug #1734111: document struct.Struct.size.
Georg Brandl [Thu, 23 Aug 2007 21:21:36 +0000 (21:21 +0000)]
Bug #1734111: document struct.Struct.size.

17 years agoBug #1752332: httplib no longer uses socket.getaddrinfo().
Georg Brandl [Thu, 23 Aug 2007 21:18:44 +0000 (21:18 +0000)]
Bug #1752332: httplib no longer uses socket.getaddrinfo().

17 years agoClarify wording a bit.
Georg Brandl [Thu, 23 Aug 2007 20:55:44 +0000 (20:55 +0000)]
Clarify wording a bit.

17 years agoBug #1594966: fix misleading usage example
Georg Brandl [Thu, 23 Aug 2007 20:53:28 +0000 (20:53 +0000)]
Bug #1594966: fix misleading usage example

17 years agoBug #1694833: fix imp.find_module() docs wrt. packages.
Georg Brandl [Thu, 23 Aug 2007 20:50:23 +0000 (20:50 +0000)]
Bug #1694833: fix imp.find_module() docs wrt. packages.

17 years agoBug #1573854: fix docs for sqlite3 cursor rowcount attr.
Georg Brandl [Thu, 23 Aug 2007 20:40:01 +0000 (20:40 +0000)]
Bug #1573854: fix docs for sqlite3 cursor rowcount attr.

17 years agoBug #1697820: document that the old slice protocol is still used by builtin types.
Georg Brandl [Thu, 23 Aug 2007 20:35:00 +0000 (20:35 +0000)]
Bug #1697820: document that the old slice protocol is still used by builtin types.

17 years agoUse try-except-finally in contextlib.
Georg Brandl [Thu, 23 Aug 2007 18:11:33 +0000 (18:11 +0000)]
Use try-except-finally in contextlib.

17 years agoSecond half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if HAVE_DYN...
Georg Brandl [Thu, 23 Aug 2007 18:08:06 +0000 (18:08 +0000)]
Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if HAVE_DYNAMIC_LOADING is not defined.

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

17 years agoBug #1768121: fix wrong/missing opcode docs.
Georg Brandl [Thu, 23 Aug 2007 17:54:11 +0000 (17:54 +0000)]
Bug #1768121: fix wrong/missing opcode docs.

17 years agoMake test_runpy re-entrant.
Brett Cannon [Thu, 23 Aug 2007 14:53:17 +0000 (14:53 +0000)]
Make test_runpy re-entrant.

17 years agoWhen setup.py fails to find the necessary bits to build some modules, have it
Jeffrey Yasskin [Wed, 22 Aug 2007 23:14:27 +0000 (23:14 +0000)]
When setup.py fails to find the necessary bits to build some modules, have it
print a slightly more informative message.

17 years agostop leaving log.0000001 __db.00* and xxx.db turds in developer
Gregory P. Smith [Wed, 22 Aug 2007 21:32:34 +0000 (21:32 +0000)]
stop leaving log.0000001 __db.00* and xxx.db turds in developer
sandboxes when bsddb3 tests are run.

17 years agoFix compile.c so that it records 0.0 and -0.0 as separate constants in a code
Alex Martelli [Wed, 22 Aug 2007 21:14:17 +0000 (21:14 +0000)]
Fix compile.c so that it records 0.0 and -0.0 as separate constants in a code
object's co_consts tuple; add a test to show that the previous behavior (where
these two constants were "collapsed" into one) causes serious malfunctioning.

17 years agowhoops - need to check in configure as well
Skip Montanaro [Wed, 22 Aug 2007 19:05:21 +0000 (19:05 +0000)]
whoops - need to check in configure as well

17 years agoNote that BeOS is unsupported as of Python 2.6.
Skip Montanaro [Wed, 22 Aug 2007 19:02:16 +0000 (19:02 +0000)]
Note that BeOS is unsupported as of Python 2.6.

17 years agoAdded test for behavior of operations on an unconnected SMTP object,
Facundo Batista [Tue, 21 Aug 2007 16:57:18 +0000 (16:57 +0000)]
Added test for behavior of operations on an unconnected SMTP object,
and tests for NOOP, RSET, and VRFY. Corrected typo in a comment for
testNonnumericPort. Added a check for constructing SMTP objects when
non-numeric ports are included in the host name. Derived a server from
SMTPServer to test various ESMTP/SMTP capabilities. Check that a
second HELO to DebuggingServer returns an error. [GSoC - Alan McIntyre]

17 years agoBug #1777168: replace operator names "opa"... with "op1"... and mark everything up...
Georg Brandl [Tue, 21 Aug 2007 06:12:19 +0000 (06:12 +0000)]
Bug #1777168: replace operator names "opa"... with "op1"... and mark everything up as literal,
to enhance readability.

17 years agoBug #1777160: mention explicitly that e.g. -1**2 is -1.
Georg Brandl [Tue, 21 Aug 2007 06:07:08 +0000 (06:07 +0000)]
Bug #1777160: mention explicitly that e.g. -1**2 is -1.

17 years agoRevert accidental checkins from last commit.
Georg Brandl [Tue, 21 Aug 2007 06:03:43 +0000 (06:03 +0000)]
Revert accidental checkins from last commit.

17 years agoDemand version 2.5.1 since 2.5 has a bug with codecs.open context managers.
Georg Brandl [Tue, 21 Aug 2007 06:01:18 +0000 (06:01 +0000)]
Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.

17 years ago[ 1761786 ] distutils.util.get_platform() return value on 64bit Windows
Mark Hammond [Tue, 21 Aug 2007 01:05:16 +0000 (01:05 +0000)]
1761786 ] distutils.util.get_platform() return value on 64bit Windows
As discussed on distutils-sig: Allows the generated installer name on
64bit Windows platforms to be different than the name generated for
32bit Windows platforms.

17 years ago[ 1761786 ] distutils.util.get_platform() return value on 64bit Windows
Mark Hammond [Tue, 21 Aug 2007 01:04:47 +0000 (01:04 +0000)]
1761786 ] distutils.util.get_platform() return value on 64bit Windows
As discussed on distutils-sig: Allows the generated installer name on
64bit Windows platforms to be different than the name generated for
32bit Windows platforms.

17 years agoCatch ProtocolError exceptions and include the header information in
Facundo Batista [Tue, 21 Aug 2007 00:16:21 +0000 (00:16 +0000)]
Catch ProtocolError exceptions and include the header information in
test output (to make it easier to debug test failures caused by
problems in the server). [GSoC - Alan McIntyre]

17 years agoAdd a hack (originally devised in a slightly different form by Thomas Wouters)
Guido van Rossum [Mon, 20 Aug 2007 15:18:04 +0000 (15:18 +0000)]
Add a hack (originally devised in a slightly different form by Thomas Wouters)
to prevent spurious tracebacks when a daemon thread's cleanup happens to wake
up when the world around it has already been destroyed.

17 years agoAdd cheot-ga-keut composed make-up sequence support in EUC-KR codec.
Hye-Shik Chang [Mon, 20 Aug 2007 06:49:18 +0000 (06:49 +0000)]
Add cheot-ga-keut composed make-up sequence support in EUC-KR codec.

17 years agoFix stray backticks.
Georg Brandl [Sun, 19 Aug 2007 18:43:50 +0000 (18:43 +0000)]
Fix stray backticks.

17 years agoRemove Mikael as the maintainer of BeOS at his request. With no maintainer
Brett Cannon [Sat, 18 Aug 2007 18:30:36 +0000 (18:30 +0000)]
Remove Mikael as the maintainer of BeOS at his request.  With no maintainer
should the port be deprecated in 2.6?