summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
...
* #7293: distutils.test_msvc9compiler now uses a key that exists on any fresh ↵Tarek Ziadé2009-11-181-5/+5
| | | | windows install
* #1757126: fix typo with the cyrillic_asian aliasPhilip Jenvey2009-11-171-1/+1
|
* Allow for backslashes in file paths passed to the regex engineNick Coghlan2009-11-161-0/+2
|
* Account for another cache when hunting ref leaksNick Coghlan2009-11-161-3/+16
|
* Issue #7328: don't corrupt sys.path when running pydoc with the -m switchNick Coghlan2009-11-151-5/+7
|
* Issue #2054: ftplib now provides an FTP_TLS class to do secure FTP usingAntoine Pitrou2009-11-152-5/+389
| | | | TLS or SSL. Patch by Giampaolo Rodola'.
* Issue #4969: The mimetypes module now reads the MIME database fromAntoine Pitrou2009-11-152-2/+80
| | | | the registry under Windows. Patch by Gabriel Genellina.
* Avoid signed overflow in some xrange calculations, and extendMark Dickinson2009-11-151-0/+68
| | | | | | xrange tests to cover some special cases that caused problems in py3k. This is a partial backport of r76292-76293 (see issue #7298.)
* Fix for Issue4683 - urllib2.HTTPDigestAuthHandler fails on third hostname?.Senthil Kumaran2009-11-151-1/+7
| | | | Resolution: Reset the nonce value for each unique nonce (as per RFC 2617)
* Issue #6816: expose the zipfile and directory execution mechanism to Python ↵Nick Coghlan2009-11-156-198/+461
| | | | code via the runpy module. Also consolidated some script execution functionality in the test harness into a helper module and removed some implementation details from the runpy module documentation.
* Addition of some details in the code comments.Senthil Kumaran2009-11-151-2/+4
|
* Remove 'g' from regrtest getopt argument string, since there's noR. David Murray2009-11-151-1/+1
| | | | handler for it.
* Issue 7324: add a sanity check to regrtest argument parsing toR. David Murray2009-11-151-0/+4
| | | | catch the case of an option with no handler.
* Turn the bsddb replication startup timeout test into aR. David Murray2009-11-141-2/+7
| | | | warning, to improve buildbot stability.
* Issue #7312 (new feature): Add a -F flag to run the selected tests inR. David Murray2009-11-141-27/+50
| | | | | a loop until a test fails. Can be combined with -j. Patch by Antoine Pitrou.
* Issue #7318: multiprocessing now uses a timeout when it fails to establishAntoine Pitrou2009-11-131-2/+13
| | | | | | a connection with another process, rather than looping endlessly. The default timeout is 20 seconds, which should be amply sufficient for local connections.
* this main is much more usefulBenjamin Peterson2009-11-121-3/+2
|
* fix several compile() issues by translating newlines in the tokenizerBenjamin Peterson2009-11-123-7/+16
|
* Issue #7295: Do not use a hardcoded file name in test_tarfile.Antoine Pitrou2009-11-111-7/+3
|
* I got the relative magnitudes of the timeout increases reversed, soR. David Murray2009-11-111-1/+1
| | | | | | I'm bumping up the longer test to the 60 seconds I intended to make it. If this doesn't cure the intermittent buildbot timeouts, I'm going to turn that test into a warning rather than a failure.
* Fixing the NameError on Windows - issue1235Senthil Kumaran2009-11-111-5/+5
|
* CGIHTTPRequestHandler.run_cgi() to use subprocess for Non Unix platforms. FixSenthil Kumaran2009-11-111-54/+23
| | | | based on Issue1235.
* Backport micro-fix from the py3k svnmergeAntoine Pitrou2009-11-101-1/+1
|
* Issue #7197: Allow unittest.TextTestRunner objects to be pickled andAntoine Pitrou2009-11-102-1/+17
| | | | | | | unpickled. This fixes crashes under Windows when trying to run test_multiprocessing in verbose mode. Additionally, Test_TextTestRunner hadn't been enabled in test_unittest.
* Add extra information to a test_signal failure message to aid diagnosis of ↵Mark Dickinson2009-11-091-1/+3
| | | | buildbot failure.
* Issue #7251: Break out round tests for large values into a separateMark Dickinson2009-11-091-3/+22
| | | | | | | test function, and skip that test on Linux/alpha systems with a broken system round function. This should turn the Debian/alpha buildbot green.
* Issue #7282: Fix a memory leak when an RLock was used in a thread otherAntoine Pitrou2009-11-093-12/+25
| | | | | than those started through `threading.Thread` (for example, using `thread.start_new_thread()`.
* Issue 7294: Fixed URL in a comment.Eric Smith2009-11-091-1/+3
|
* Kill a small potential leak in test_threading.Antoine Pitrou2009-11-081-0/+2
| | | | | The leak may not manifest itself if the OS re-uses the same thread ids (I suppose Neal's machine doesn't :-))
* Some minor cleanups to private runpy code and docstringsNick Coghlan2009-11-071-7/+13
|
* Add test for runpy.run_module package execution and use something other than ↵Nick Coghlan2009-11-071-5/+32
| | | | logging as the example of a non-executable package
* Issue #7270: Add some dedicated unit tests for multi-thread synchronizationAntoine Pitrou2009-11-063-18/+568
| | | | primitives such as Lock, RLock, Condition, Event and Semaphore.
* Merged revisions 76131 via svnmerge fromBenjamin Peterson2009-11-051-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r76131 | benjamin.peterson | 2009-11-05 17:53:21 -0600 (Thu, 05 Nov 2009) | 1 line import sys ........
* Merged revisions 76127-76128 via svnmerge fromBenjamin Peterson2009-11-051-0/+3
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r76127 | benjamin.peterson | 2009-11-05 17:04:58 -0600 (Thu, 05 Nov 2009) | 1 line set svn:eol-style ........ r76128 | benjamin.peterson | 2009-11-05 17:07:46 -0600 (Thu, 05 Nov 2009) | 1 line skip this test on windows to avoid newline horrors ........
* Merged revisions 76125 via svnmerge fromBenjamin Peterson2009-11-051-8/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r76125 | benjamin.peterson | 2009-11-05 15:26:55 -0600 (Thu, 05 Nov 2009) | 1 line handle newline issues better for comparing files ........
* Issue #7264: Fix a possible deadlock when deallocating thread-local objectsAntoine Pitrou2009-11-052-3/+9
| | | | which are part of a reference cycle.
* Increase the timeout in the bsddb3 replication test to allowR. David Murray2009-11-051-2/+2
| | | | the test time to complete on slow buildbots. See issue 6462.
* Issue #7211: Allow 64-bit values for the `ident` and `data` fields of keventAntoine Pitrou2009-11-041-0/+11
| | | | | | objects on 64-bit systems. Patch by Michael Broghton. I will revert this checkin if it causes problems on our BSD buildbots.
* Make test_shutil clean up after itselfAntoine Pitrou2009-11-041-53/+57
|
* Try to make test_wsgiref less fragile against environment changes by other testsAntoine Pitrou2009-11-031-1/+8
|
* Add acceptance of long ints to test_memoryio.pyAntoine Pitrou2009-11-021-3/+11
| | | | (in preparation for fix of #7249 in 2.6)
* enable test_parser in lib2to3Benjamin Peterson2009-11-021-2/+3
|
* Merged revisions 76065 via svnmerge fromBenjamin Peterson2009-11-022-2/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r76065 | benjamin.peterson | 2009-11-02 12:21:25 -0600 (Mon, 02 Nov 2009) | 1 line don't print stuff in tests ........
* add spaceBenjamin Peterson2009-11-021-1/+1
|
* Merged revisions ↵Benjamin Peterson2009-11-0210-21/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 74359,75081,75088,75213,75278,75303,75427-75428,75734-75736,75865,76059-76061 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r74359 | benjamin.peterson | 2009-08-12 17:23:13 -0500 (Wed, 12 Aug 2009) | 1 line don't pass the deprecated print_function option ........ r75081 | benjamin.peterson | 2009-09-26 22:02:57 -0500 (Sat, 26 Sep 2009) | 1 line let 2to3 work with extended iterable unpacking ........ r75088 | benjamin.peterson | 2009-09-27 11:25:21 -0500 (Sun, 27 Sep 2009) | 1 line look on the type only for __call__ ........ r75213 | benjamin.peterson | 2009-10-03 10:09:46 -0500 (Sat, 03 Oct 2009) | 5 lines revert 75212; it's not correct People can use isinstance(x, collections.Callable) if they expect objects with __call__ in their instance dictionaries. ........ r75278 | benjamin.peterson | 2009-10-07 16:25:56 -0500 (Wed, 07 Oct 2009) | 4 lines fix whitespace problems with fix_idioms #3563 Patch by Joe Amenta. ........ r75303 | benjamin.peterson | 2009-10-09 16:59:11 -0500 (Fri, 09 Oct 2009) | 1 line port latin-1 and utf-8 cookie improvements ........ r75427 | benjamin.peterson | 2009-10-14 20:35:57 -0500 (Wed, 14 Oct 2009) | 1 line force floor division ........ r75428 | benjamin.peterson | 2009-10-14 20:39:21 -0500 (Wed, 14 Oct 2009) | 1 line silence -3 warnings about __hash__ ........ r75734 | benjamin.peterson | 2009-10-26 16:25:53 -0500 (Mon, 26 Oct 2009) | 2 lines warn on map(None, ...) with more than 2 arguments #7203 ........ r75735 | benjamin.peterson | 2009-10-26 16:28:25 -0500 (Mon, 26 Oct 2009) | 1 line remove unused result ........ r75736 | benjamin.peterson | 2009-10-26 16:29:02 -0500 (Mon, 26 Oct 2009) | 1 line using get() here is a bit pointless ........ r75865 | benjamin.peterson | 2009-10-27 15:49:00 -0500 (Tue, 27 Oct 2009) | 1 line explain reason for warning ........ r76059 | benjamin.peterson | 2009-11-02 11:43:47 -0600 (Mon, 02 Nov 2009) | 1 line tuples are no longer used for children ........ r76060 | benjamin.peterson | 2009-11-02 11:55:40 -0600 (Mon, 02 Nov 2009) | 1 line revert r76059; apparently some fixers rely on Leaf no () for children ........ r76061 | benjamin.peterson | 2009-11-02 12:06:17 -0600 (Mon, 02 Nov 2009) | 1 line make fix_tuple_params keep the tree valid #7253 ........
* Fix and improve some assertions in test_siteAntoine Pitrou2009-11-011-8/+9
|
* fixed stdout alteration in test_distutilsTarek Ziadé2009-11-012-1/+6
|
* Use a custom timeout in test_support.open_urlresource.Antoine Pitrou2009-11-011-2/+10
|
* This should finally fix #6896. Let's watch the buildbots.Antoine Pitrou2009-11-012-1/+15
|
* test_normalization should skip and not crash when the resource isn't availableAntoine Pitrou2009-11-011-2/+5
|