]> granicus.if.org Git - python/log
python
14 years agoAdd various unittest items
Andrew M. Kuchling [Thu, 29 Apr 2010 01:45:41 +0000 (01:45 +0000)]
Add various unittest items

14 years agoFix doubled 'the'.
Andrew M. Kuchling [Thu, 29 Apr 2010 01:44:30 +0000 (01:44 +0000)]
Fix doubled 'the'.
Markup fixes to use :exc:, :option: in a few places.
  (Glitch: unittest.main's -c ends up a link to the Python
  interpreter's -c option.  Should we skip using :option: for that
  switch, or disable the auto-linking somehow?)

14 years agoAdd various items
Andrew M. Kuchling [Thu, 29 Apr 2010 00:22:16 +0000 (00:22 +0000)]
Add various items

14 years agoFix style issues in test_ssl
Antoine Pitrou [Wed, 28 Apr 2010 21:11:01 +0000 (21:11 +0000)]
Fix style issues in test_ssl

14 years agoClarify and fix the documentation for IOBase.close()
Antoine Pitrou [Wed, 28 Apr 2010 19:57:33 +0000 (19:57 +0000)]
Clarify and fix the documentation for IOBase.close()

14 years agoState clearly that truncate() doesn't move the file position,
Antoine Pitrou [Wed, 28 Apr 2010 19:53:35 +0000 (19:53 +0000)]
State clearly that truncate() doesn't move the file position,
and remove a duplicate of its specification.

14 years agoFixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-encoding...
Senthil Kumaran [Wed, 28 Apr 2010 17:20:43 +0000 (17:20 +0000)]
Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-encoding: chunked"

14 years agoAdd version changed note for -m tinkering with sys.argv[0] during the search process
Nick Coghlan [Wed, 28 Apr 2010 14:53:59 +0000 (14:53 +0000)]
Add version changed note for -m tinkering with sys.argv[0] during the search process

14 years agoIssue 8202: when using the -m command line switch, sys.argv[0] is now '-m' instead...
Nick Coghlan [Wed, 28 Apr 2010 14:51:08 +0000 (14:51 +0000)]
Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' instead of '-c' while searching for the module to be executed

14 years agoAlso mention patch submitter's name in NEWS, not just in the commit message
Nick Coghlan [Wed, 28 Apr 2010 14:34:30 +0000 (14:34 +0000)]
Also mention patch submitter's name in NEWS, not just in the commit message

14 years agoIssue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing...
Nick Coghlan [Wed, 28 Apr 2010 14:29:06 +0000 (14:29 +0000)]
Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing the exception under test (original patch by Lennart Regebro)

14 years agoIssue #3928: Support 'os.mknod()' in Solaris
Jesus Cea [Wed, 28 Apr 2010 10:32:30 +0000 (10:32 +0000)]
Issue #3928: Support 'os.mknod()' in Solaris

14 years agoIssue #7449, last part (11): fix many tests if thread support is disabled
Victor Stinner [Tue, 27 Apr 2010 23:55:59 +0000 (23:55 +0000)]
Issue #7449, last part (11): fix many tests if thread support is disabled

 * Use try/except ImportError or test_support.import_module() to import thread
   and threading modules
 * Add @unittest.skipUnless(threading, ...) to testcases using threads

14 years agoIssue #7449, part 10: test_cmd imports trace module using test_support.import_module()
Victor Stinner [Tue, 27 Apr 2010 23:51:16 +0000 (23:51 +0000)]
Issue #7449, part 10: test_cmd imports trace module using test_support.import_module()

Use test_support.import_module() instead of import to raise a SkipTest
exception if the import fail. Import trace fails if the threading module is
missing.

See also part 3: test_doctest: import trace module in test_coverage().

14 years agoPartial revert of r80556 (Issue #7449, part 5, fix ctypes test)
Victor Stinner [Tue, 27 Apr 2010 23:33:58 +0000 (23:33 +0000)]
Partial revert of r80556 (Issue #7449, part 5, fix ctypes test)

Rewrite r80556: the thread test have to be executed just after the test on
libc_open() and so the test cannot be splitted in two functions (without
duplicating code, and I don't want to duplicate code).

14 years agoIssue #7449, part 9: fix test_xmlrpclib for missing threading module
Victor Stinner [Tue, 27 Apr 2010 23:14:58 +0000 (23:14 +0000)]
Issue #7449, part 9: fix test_xmlrpclib for missing threading module

 * Skip testcases using threads if threading module is missing
 * Use "http://" instead of URL in ServerProxyTestCase if threading is missing
   because URL is not set in this case

14 years agoIssue #7449, part 8: don't skip the whole test_asynchat if threading is missing
Victor Stinner [Tue, 27 Apr 2010 23:03:16 +0000 (23:03 +0000)]
Issue #7449, part 8: don't skip the whole test_asynchat if threading is missing

TestFifo can be executed without the threading module

14 years agoIssue #7449, part 7: simplify threading detection in test_capi
Victor Stinner [Tue, 27 Apr 2010 23:01:29 +0000 (23:01 +0000)]
Issue #7449, part 7: simplify threading detection in test_capi

 * Skip TestPendingCalls if threading module is missing
 * Test if threading module is present or not, instead of test the presence of
   _testcapi._test_thread_state

14 years agoIssue #7449, part 6: fix test_hashlib for missing threading module
Victor Stinner [Tue, 27 Apr 2010 22:59:35 +0000 (22:59 +0000)]
Issue #7449, part 6: fix test_hashlib for missing threading module

Move @test_support.reap_thread decorator from test_main() to test_threaded_hashing().

14 years agomake slice notation in (r)find docs consistent
Benjamin Peterson [Tue, 27 Apr 2010 22:56:31 +0000 (22:56 +0000)]
make slice notation in (r)find docs consistent

14 years agoIssue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newline
Antoine Pitrou [Tue, 27 Apr 2010 22:03:37 +0000 (22:03 +0000)]
Issue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newline
before the certificate footer.  Patch by Kyle VanderBeek.

14 years agoIssue #7449, part 5: split Test.test_open() of ctypes/test/test_errno.py
Victor Stinner [Tue, 27 Apr 2010 22:01:24 +0000 (22:01 +0000)]
Issue #7449, part 5: split Test.test_open() of ctypes/test/test_errno.py

 * Split Test.test_open() in 2 functions: test_open() and test_thread_open()
 * Skip test_open() and test_thread_open() if we are unable to find the C
   library
 * Skip test_thread_open() if thread support is disabled
 * Use unittest.skipUnless(os.name == "nt", ...) on test_GetLastError()

14 years agoIssue #7449, part 4: skip test_multiprocessing if thread support is disabled
Victor Stinner [Tue, 27 Apr 2010 21:56:26 +0000 (21:56 +0000)]
Issue #7449, part 4: skip test_multiprocessing if thread support is disabled

import threading after _multiprocessing to raise a more revelant error message:
"No module named _multiprocessing". _multiprocessing is not compiled without
thread support.

14 years agoIssue #7449 part 3, test_doctest: import trace module in test_coverage()
Victor Stinner [Tue, 27 Apr 2010 21:51:26 +0000 (21:51 +0000)]
Issue #7449 part 3, test_doctest: import trace module in test_coverage()

Import trace module fail if the threading module is missing. test_coverage() is
only used if test_doctest.py is used with the -c option. This commit allows to
execute the test suite without thread support.

Move "import trace" in test_coverage() and use
test_support.import_module('trace').

14 years agoIssue #7449, part 2: regrtest.py -j option requires thread support
Victor Stinner [Tue, 27 Apr 2010 21:47:01 +0000 (21:47 +0000)]
Issue #7449, part 2: regrtest.py -j option requires thread support

14 years agoIssue #7449, part 1: fix test_support.py for Python compiled without thread
Victor Stinner [Tue, 27 Apr 2010 21:46:03 +0000 (21:46 +0000)]
Issue #7449, part 1: fix test_support.py for Python compiled without thread

14 years agocorrect signature
Benjamin Peterson [Tue, 27 Apr 2010 21:19:06 +0000 (21:19 +0000)]
correct signature

14 years agocondense import
Benjamin Peterson [Tue, 27 Apr 2010 21:18:30 +0000 (21:18 +0000)]
condense import

14 years agofold __future__ imports
Benjamin Peterson [Tue, 27 Apr 2010 21:17:22 +0000 (21:17 +0000)]
fold __future__ imports

14 years agofix comment
Benjamin Peterson [Tue, 27 Apr 2010 21:15:28 +0000 (21:15 +0000)]
fix comment

14 years agoreject None as the buffering argument like the C implementation does #8546
Benjamin Peterson [Tue, 27 Apr 2010 21:01:54 +0000 (21:01 +0000)]
reject None as the buffering argument like the C implementation does #8546

14 years agoIssue #8549: Fix compiling the _ssl extension under AIX. Patch by
Antoine Pitrou [Tue, 27 Apr 2010 19:09:59 +0000 (19:09 +0000)]
Issue #8549: Fix compiling the _ssl extension under AIX.  Patch by
Sridhar Ratnakumar.

14 years agosocket.error can really happen here, and fix a possible NameError
Antoine Pitrou [Tue, 27 Apr 2010 13:13:26 +0000 (13:13 +0000)]
socket.error can really happen here, and fix a possible NameError

14 years agoQualify or remove or bare excepts. Simplify exception handling in places.
Antoine Pitrou [Tue, 27 Apr 2010 10:32:58 +0000 (10:32 +0000)]
Qualify or remove or bare excepts.  Simplify exception handling in places.
Remove uses of test_support.TestFailed.

14 years agoreplace custom code with standard library functionality (HTTPServer.shutdown())
Antoine Pitrou [Tue, 27 Apr 2010 09:51:18 +0000 (09:51 +0000)]
replace custom code with standard library functionality (HTTPServer.shutdown())
+ enable test that was never run (!)
+ make tests faster by lowering polling timeout

14 years agoRemove uses of find_unused_port() in test_ssl, and small cleanups
Antoine Pitrou [Tue, 27 Apr 2010 08:40:51 +0000 (08:40 +0000)]
Remove uses of find_unused_port() in test_ssl, and small cleanups

14 years agoAdding versionadded to various new unittest functions in documentation
Michael Foord [Mon, 26 Apr 2010 23:36:47 +0000 (23:36 +0000)]
Adding versionadded to various new unittest functions in documentation

14 years agoIssue #6656: fix locale.format_string to handle escaped percents and mappings.
R. David Murray [Mon, 26 Apr 2010 21:17:14 +0000 (21:17 +0000)]
Issue #6656: fix locale.format_string to handle escaped percents and mappings.

Refactors format_string.  Includes tests for the two problems noted in
the issue, but as far as I can see there are no other tests that confirm
that format_string conforms to normal % formatting rules.

14 years agoWhen calling getpeername() in SSLSocket.__init__, only silence exceptions
Antoine Pitrou [Mon, 26 Apr 2010 17:23:33 +0000 (17:23 +0000)]
When calling getpeername() in SSLSocket.__init__, only silence exceptions
caused by the "socket not connected" condition.

14 years agoIssue 8325: Improve regrtest --help text.
R. David Murray [Mon, 26 Apr 2010 16:54:57 +0000 (16:54 +0000)]
Issue 8325: Improve regrtest --help text.

14 years agoRevert an accidental commit from r80492.
Brett Cannon [Sun, 25 Apr 2010 23:11:51 +0000 (23:11 +0000)]
Revert an accidental commit from r80492.

14 years agoWhen DeprecationWarning was silenced by default, it also silenced any use of -Q
Brett Cannon [Sun, 25 Apr 2010 22:33:36 +0000 (22:33 +0000)]
When DeprecationWarning was silenced by default, it also silenced any use of -Q
by default as well. This change fixes that by treating -Q like -3 when it comes
to DeprecationWarning; using it causes the silencing to not occur.

Fixes issue #7319.

14 years agoIssue #2302: Fix a race condition in SocketServer.BaseServer.shutdown,
Antoine Pitrou [Sun, 25 Apr 2010 21:40:32 +0000 (21:40 +0000)]
Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown,
where the method could block indefinitely if called just before the
event loop started running.  This also fixes the occasional freezes
witnessed in test_httpservers.

14 years agoReplace a Lock with a better suited Event.
Antoine Pitrou [Sun, 25 Apr 2010 21:15:50 +0000 (21:15 +0000)]
Replace a Lock with a better suited Event.

14 years agoAdding unittest.removeHandler function / decorator for removing the signal.SIGINT...
Michael Foord [Sun, 25 Apr 2010 19:02:46 +0000 (19:02 +0000)]
Adding unittest.removeHandler function / decorator for removing the signal.SIGINT signal handler. With tests and docs.

14 years agoPatch from Tim Hatch: Make socket setblocking <-> settimeout examples symmetric.
Georg Brandl [Sun, 25 Apr 2010 10:57:15 +0000 (10:57 +0000)]
Patch from Tim Hatch: Make socket setblocking <-> settimeout examples symmetric.

14 years agoFix code example to have valid syntax so that it can be highlighted.
Georg Brandl [Sun, 25 Apr 2010 10:56:41 +0000 (10:56 +0000)]
Fix code example to have valid syntax so that it can be highlighted.

14 years agoPatch from Tim Hatch: Minor spelling changes to _winreg docs.
Georg Brandl [Sun, 25 Apr 2010 10:55:58 +0000 (10:55 +0000)]
Patch from Tim Hatch: Minor spelling changes to _winreg docs.

14 years agoPatch from Tim Hatch: Remove reference to winreg being the fabled high-level registry...
Georg Brandl [Sun, 25 Apr 2010 10:55:16 +0000 (10:55 +0000)]
Patch from Tim Hatch: Remove reference to winreg being the fabled high-level registry interface.

14 years agoPatch from Tim Hatch: Better cross-referencing in socket and winreg docs.
Georg Brandl [Sun, 25 Apr 2010 10:54:42 +0000 (10:54 +0000)]
Patch from Tim Hatch: Better cross-referencing in socket and winreg docs.

14 years agoRemove LaTeXy index entry syntax.
Georg Brandl [Sun, 25 Apr 2010 10:29:17 +0000 (10:29 +0000)]
Remove LaTeXy index entry syntax.

14 years ago#8522: use with statement instead of try-finally for file handling.
Georg Brandl [Sun, 25 Apr 2010 10:17:27 +0000 (10:17 +0000)]
#8522: use with statement instead of try-finally for file handling.

14 years ago#8528: fix typo.
Georg Brandl [Sun, 25 Apr 2010 10:16:00 +0000 (10:16 +0000)]
#8528: fix typo.

14 years agoFixing obscure syslog corner-case when sys.argv = None, syslog() would call
Sean Reifscheider [Sun, 25 Apr 2010 06:31:23 +0000 (06:31 +0000)]
Fixing obscure syslog corner-case when sys.argv = None, syslog() would call
openlog() for every logged message.

14 years agoIssue #5103: SSL handshake would ignore the socket timeout and block
Antoine Pitrou [Sat, 24 Apr 2010 20:04:58 +0000 (20:04 +0000)]
Issue #5103: SSL handshake would ignore the socket timeout and block
indefinitely if the other end didn't respond.

14 years agoThe do_handshake() method of SSL objects now adjusts the blocking mode of
Antoine Pitrou [Sat, 24 Apr 2010 19:57:01 +0000 (19:57 +0000)]
The do_handshake() method of SSL objects now adjusts the blocking mode of
the SSL structure if necessary (as other methods already do).

14 years agoFix #5774. Some _winreg functions are documented as taking kwargs but don't.
Brian Curtin [Sat, 24 Apr 2010 17:10:22 +0000 (17:10 +0000)]
Fix #5774. Some _winreg functions are documented as taking kwargs but don't.

14 years ago- Issue #8509: Fix quoting in help strings and code snippets in configure.in.
Matthias Klose [Sat, 24 Apr 2010 16:38:36 +0000 (16:38 +0000)]
- Issue #8509: Fix quoting in help strings and code snippets in configure.in.

14 years agoFix #7838. Add docstrings and privatize _subprocess implementation details.
Brian Curtin [Sat, 24 Apr 2010 15:40:11 +0000 (15:40 +0000)]
Fix #7838. Add docstrings and privatize _subprocess implementation details.

Since CREATE_NEW_* are used for the creation flags of a subprocess, they
were added to __all__. The rest of the previously exposed attributes are
now qualified by _subprocess.ATTR rather than importing *.

14 years agoMake test_makefile_close a networked test (can't read() from a non-connected
Antoine Pitrou [Sat, 24 Apr 2010 10:43:57 +0000 (10:43 +0000)]
Make test_makefile_close a networked test (can't read() from a non-connected
socket under OS X), and skip it under Windows (where sockets can't be read()
from using their fds).

14 years ago#7507: quote "!" in pipes.quote(); it is a special character for some shells.
Georg Brandl [Sat, 24 Apr 2010 09:08:10 +0000 (09:08 +0000)]
#7507: quote "!" in pipes.quote(); it is a special character for some shells.

14 years agoMarkup fixes.
Georg Brandl [Sat, 24 Apr 2010 08:56:58 +0000 (08:56 +0000)]
Markup fixes.

14 years agoIssue #5238: Calling makefile() on an SSL object would prevent the
Antoine Pitrou [Fri, 23 Apr 2010 23:25:45 +0000 (23:25 +0000)]
Issue #5238: Calling makefile() on an SSL object would prevent the
underlying socket from being closed until all objects get truely destroyed.

14 years agoIssue #7943: Fix circular reference created when instantiating an SSL
Antoine Pitrou [Fri, 23 Apr 2010 22:54:59 +0000 (22:54 +0000)]
Issue #7943: Fix circular reference created when instantiating an SSL
socket.  Initial patch by Péter Szabó.

14 years agoFix the "regrtest -s" switch.
Florent Xicluna [Fri, 23 Apr 2010 18:10:12 +0000 (18:10 +0000)]
Fix the "regrtest -s" switch.

14 years agoRemove ImportWarnings filters. They become obsolete after r79310, issue #8205.
Florent Xicluna [Fri, 23 Apr 2010 17:59:10 +0000 (17:59 +0000)]
Remove ImportWarnings filters.  They become obsolete after r79310, issue #8205.

14 years agoSmall comment documentation change to clarify "ident" selection.
Sean Reifscheider [Fri, 23 Apr 2010 08:38:24 +0000 (08:38 +0000)]
Small comment documentation change to clarify "ident" selection.

14 years agoissue8451: Making syslog module use sys.argv[0] for "ident".
Sean Reifscheider [Fri, 23 Apr 2010 08:31:55 +0000 (08:31 +0000)]
issue8451: Making syslog module use sys.argv[0] for "ident".

14 years agoIssue #8108: Fix the unwrap() method of SSL objects when the socket has
Antoine Pitrou [Thu, 22 Apr 2010 23:33:02 +0000 (23:33 +0000)]
Issue #8108: Fix the unwrap() method of SSL objects when the socket has
a non-infinite timeout.  Also make that method friendlier with applications
wanting to continue using the socket in clear-text mode, by disabling
OpenSSL's internal readahead.  Thanks to Darryl Miles for guidance.

Issue #8108: test_ftplib's non-blocking SSL server now has proper handling
of SSL shutdowns.

14 years agoAdd "report a bug" links in some prominent places. Make it clear that doc bugs can...
Georg Brandl [Thu, 22 Apr 2010 22:15:33 +0000 (22:15 +0000)]
Add "report a bug" links in some prominent places.  Make it clear that doc bugs can be mailed to docs@python.org.  Clarify tracker usage.

14 years agoSkip test on old versions of OpenSSL
Antoine Pitrou [Thu, 22 Apr 2010 18:00:41 +0000 (18:00 +0000)]
Skip test on old versions of OpenSSL

14 years agoTemporarily display OpenSSL version in verbose run -- trying to diagnose failure...
Antoine Pitrou [Thu, 22 Apr 2010 17:44:41 +0000 (17:44 +0000)]
Temporarily display OpenSSL version in verbose run -- trying to diagnose failure on Neal's buildbot.

14 years agoChanged tests to only urlparse one, which was enough, addressed Ezio's comment
Senthil Kumaran [Thu, 22 Apr 2010 12:10:13 +0000 (12:10 +0000)]
Changed tests to only urlparse one, which was enough, addressed Ezio's comment
on Invalid url check statement and versionchanged string in docs.

14 years agoRephrase comment.
Ezio Melotti [Thu, 22 Apr 2010 11:53:21 +0000 (11:53 +0000)]
Rephrase comment.

14 years agoIssue #8475: Pass absolute interpreter path to
Martin v. Löwis [Thu, 22 Apr 2010 11:34:36 +0000 (11:34 +0000)]
Issue #8475: Pass absolute interpreter path to
"make html".

14 years ago#8474: fix duplicate test in test_email.
Ezio Melotti [Thu, 22 Apr 2010 11:23:31 +0000 (11:23 +0000)]
#8474: fix duplicate test in test_email.

14 years agoUpdated the RFCs list in the See Also section of urlparse.rst
Senthil Kumaran [Thu, 22 Apr 2010 05:48:35 +0000 (05:48 +0000)]
Updated the RFCs list in the See Also section of urlparse.rst

14 years agoIssue #7332: Remove the 16KB stack-based buffer in
Antoine Pitrou [Wed, 21 Apr 2010 22:53:29 +0000 (22:53 +0000)]
Issue #7332: Remove the 16KB stack-based buffer in
PyMarshal_ReadLastObjectFromFile, which doesn't bring any noticeable
benefit compared to the dynamic memory allocation fallback.  Patch by
Charles-François Natali.

14 years ago- Build the ossaudio extension on GNU/kFreeBSD.
Matthias Klose [Wed, 21 Apr 2010 22:18:52 +0000 (22:18 +0000)]
- Build the ossaudio extension on GNU/kFreeBSD.

14 years agosetup.py: search ffi.h in include dirs, if LIBFFI_INCLUDEDIR is empty.
Matthias Klose [Wed, 21 Apr 2010 21:45:30 +0000 (21:45 +0000)]
setup.py: search ffi.h in include dirs, if LIBFFI_INCLUDEDIR is empty.

14 years agoForgot to add the sample certificate (followup to r80314)
Antoine Pitrou [Wed, 21 Apr 2010 19:36:23 +0000 (19:36 +0000)]
Forgot to add the sample certificate (followup to r80314)

14 years agoIssue #8484: Load all ciphers and digest algorithms when initializing
Antoine Pitrou [Wed, 21 Apr 2010 19:28:03 +0000 (19:28 +0000)]
Issue #8484: Load all ciphers and digest algorithms when initializing
the _ssl extension, such that verification of some SSL certificates
doesn't fail because of an "unknown algorithm".

14 years agoshutil: removed unused import and fixed attributes names in _call_external_zip
Tarek Ziadé [Wed, 21 Apr 2010 13:32:26 +0000 (13:32 +0000)]
shutil: removed unused import and fixed attributes names in _call_external_zip

14 years agoAdd Tim Golden.
Martin v. Löwis [Wed, 21 Apr 2010 06:37:48 +0000 (06:37 +0000)]
Add Tim Golden.

14 years agoSync test_plistlib.py with plistlib.py
Ronald Oussoren [Wed, 21 Apr 2010 06:00:35 +0000 (06:00 +0000)]
Sync test_plistlib.py with plistlib.py

14 years agoIssue #8437: Fix test_gdb failures, patch written by Dave Malcolm
Victor Stinner [Tue, 20 Apr 2010 22:28:31 +0000 (22:28 +0000)]
Issue #8437: Fix test_gdb failures, patch written by Dave Malcolm

14 years agoremoved ztar support in shutil.make_archive
Tarek Ziadé [Tue, 20 Apr 2010 21:09:06 +0000 (21:09 +0000)]
removed ztar support in shutil.make_archive

14 years agoFix for issue 7852: the DTD for OSX Plists has changed due
Ronald Oussoren [Tue, 20 Apr 2010 20:59:37 +0000 (20:59 +0000)]
Fix for issue 7852: the DTD for OSX Plists has changed due
to a change in the company name for Apple.

14 years agoIssue2987 - Added additional Invalid URL and changed the Invalid URL checking code...
Senthil Kumaran [Tue, 20 Apr 2010 20:37:59 +0000 (20:37 +0000)]
Issue2987 - Added additional Invalid URL and changed the Invalid URL checking code for better.

14 years agofix typo in r79533, introduced by the fix for issue #8233
Matthias Klose [Tue, 20 Apr 2010 19:45:34 +0000 (19:45 +0000)]
fix typo in r79533, introduced by the fix for issue #8233

14 years ago#8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools...
Ezio Melotti [Tue, 20 Apr 2010 16:49:48 +0000 (16:49 +0000)]
#8472: fix wrong function name in functions.rst: itertools.filterfalse -> itertools.ifilterfalse

14 years agoAdd version info for os.kill and signal changes from #1220212.
Brian Curtin [Tue, 20 Apr 2010 15:23:18 +0000 (15:23 +0000)]
Add version info for os.kill and signal changes from #1220212.

14 years agoThis patch fixes the handling of a weak-linked
Ronald Oussoren [Tue, 20 Apr 2010 08:54:48 +0000 (08:54 +0000)]
This patch fixes the handling of a weak-linked
variable and should fix issue #8095.

14 years agoThe PythonLauncher change is needed due
Ronald Oussoren [Tue, 20 Apr 2010 08:53:12 +0000 (08:53 +0000)]
The PythonLauncher change is needed due
to changes in how the BASECFLAGS and CFLAGS
variables get filled by configure.

The Mac/Makefile.in change ensures that
pythonw gets build with the rigth deployment
targets.

14 years ago1) The timeout in the itimer tests was too low for slow or heavily
Stefan Krah [Tue, 20 Apr 2010 07:59:10 +0000 (07:59 +0000)]
1) The timeout in the itimer tests was too low for slow or heavily
   loaded machines.

2) Even with the increased timeout, the OS does not guarantee that
   a process will get a certain amount of virtual time in 60s, so
   the failure is changed to a diagnostic.

14 years agoFix Issue8460: Victor's patch to add timeout in test_urllib2net test_urls.
Senthil Kumaran [Tue, 20 Apr 2010 06:54:59 +0000 (06:54 +0000)]
Fix Issue8460: Victor's patch to add timeout in test_urllib2net test_urls.

14 years agoExplicitly set system default for $PATH to
Ronald Oussoren [Tue, 20 Apr 2010 05:50:44 +0000 (05:50 +0000)]
Explicitly set system default for $PATH to
ensure we have a clean build environment (OSX installer)

14 years agoFix Issue #4841: timeout is now applied for connections resulting from PORT/EPRT...
Giampaolo Rodolà [Mon, 19 Apr 2010 21:46:28 +0000 (21:46 +0000)]
Fix Issue #4841: timeout is now applied for connections resulting from PORT/EPRT commands

14 years agoFixed #8463: added missing reference to bztar in shutil's documentation.
Tarek Ziadé [Mon, 19 Apr 2010 21:28:21 +0000 (21:28 +0000)]
Fixed #8463: added missing reference to bztar in shutil's documentation.

14 years agofew pep8 fixes
Tarek Ziadé [Mon, 19 Apr 2010 21:13:03 +0000 (21:13 +0000)]
few pep8 fixes