summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix exception handling in itertools.izip_longest().Raymond Hettinger2009-11-013-35/+80
|
* Merged revisions 75999 via svnmerge fromGregory P. Smith2009-11-011-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75999 | gregory.p.smith | 2009-10-31 14:23:39 -0700 (Sat, 31 Oct 2009) | 2 lines Define TCSASOFT if the flag exists. ........
* Merged revisions 76000,76016 via svnmerge fromGregory P. Smith2009-11-012-3/+14
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76000 | gregory.p.smith | 2009-10-31 14:26:08 -0700 (Sat, 31 Oct 2009) | 7 lines Fixes issue7208 - getpass would still allow the password to be echoed on Solaris due to not flushing the input buffer. This change also incorporates some additional getpass implementation suggestions for security based on an analysis of getpass.c linked to from the issue. ........ r76016 | gregory.p.smith | 2009-11-01 10:33:55 -0800 (Sun, 01 Nov 2009) | 2 lines news entry for r76000 ........
* Blocked revisions 76012 via svnmergeAntoine Pitrou2009-11-010-0/+0
| | | | | | | | ........ r76012 | antoine.pitrou | 2009-11-01 17:10:47 +0100 (dim., 01 nov. 2009) | 3 lines Hum, test skipping when the URL isn't reachable hadn't been applied to trunk. ........
* Fix test skipping in multibyte codec testsAntoine Pitrou2009-11-012-2/+2
|
* Merged revisions 76007 via svnmerge fromAntoine Pitrou2009-11-011-3/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76007 | antoine.pitrou | 2009-11-01 12:58:22 +0100 (dim., 01 nov. 2009) | 3 lines Buffered I/O: optimize lock taking in the common non-contended case. ........
* Blocked revisions 76001 via svnmergeAntoine Pitrou2009-10-310-0/+0
| | | | | | | | | | Apparently someone already did the job in py3k. ........ r76001 | antoine.pitrou | 2009-11-01 00:19:52 +0100 (dim., 01 nov. 2009) | 3 lines Use richer assertions in test_mailbox (for better failure messages). ........
* Merged revisions 75995 via svnmerge fromEric Smith2009-10-311-2/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75995 | eric.smith | 2009-10-31 13:07:17 -0400 (Sat, 31 Oct 2009) | 1 line Improved test for a deprecation warning. ........
* Blocked revisions 75991 via svnmergeMark Dickinson2009-10-310-0/+0
| | | | | | | | ........ r75991 | mark.dickinson | 2009-10-31 12:47:47 +0000 (Sat, 31 Oct 2009) | 1 line Set retval on PyOS_string_to_double failure. ........
* Merged revisions 75986 via svnmerge fromMark Dickinson2009-10-311-2/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75986 | mark.dickinson | 2009-10-31 10:36:06 +0000 (Sat, 31 Oct 2009) | 2 lines Issue #7042: Use a better mechanism for testing timers in test_signal. ........
* Merged revisions 75982 via svnmerge fromMark Dickinson2009-10-312-1/+23
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75982 | mark.dickinson | 2009-10-31 10:11:28 +0000 (Sat, 31 Oct 2009) | 5 lines Issue #6603: Fix --with-tsc build failures on x86-64 that resulted from a gcc inline assembler peculiarity. (gcc's "A" constraint apparently means 'rax or rdx' in 64-bit mode, not edx:eax or rdx:rax as one might expect.) ........
* Blocked revisions 75979 via svnmergeMark Dickinson2009-10-310-0/+0
| | | | | | | | ........ r75979 | mark.dickinson | 2009-10-31 09:42:39 +0000 (Sat, 31 Oct 2009) | 1 line Deprecate PyOS_ascii_strtod and PyOS_ascii_atof, and document the replacement function PyOS_string_to_double. ........
* Fix ReST markup.Mark Dickinson2009-10-311-1/+1
|
* Blocked revisions 75974 via svnmergeMark Dickinson2009-10-310-0/+0
| | | | | | | | ........ r75974 | mark.dickinson | 2009-10-31 09:28:12 +0000 (Sat, 31 Oct 2009) | 1 line Move a Misc/NEWS entry to right section. ........
* Merged revisions 75969 via svnmerge fromAntoine Pitrou2009-10-302-15/+8
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75969 | antoine.pitrou | 2009-10-30 23:19:09 +0100 (ven., 30 oct. 2009) | 5 lines Remove official documentation entry for thread._count() and make the docstring more descriptive instead. ........
* Merged revisions 75967 via svnmerge fromAntoine Pitrou2009-10-301-3/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75967 | antoine.pitrou | 2009-10-30 22:41:22 +0100 (ven., 30 oct. 2009) | 3 lines Try to fix transient refleaks in test_pydoc. ........
* Followup to r75965: replace the test_uuid-specific patch with a generic fixAntoine Pitrou2009-10-302-3/+6
| | | | (other tests may have the same problem).
* Fix a refleak in test_uuid when run with -j.Antoine Pitrou2009-10-301-0/+3
| | | | | The "refleak" was simply the effect of internal buffering in block buffering mode (rather than line buffering when sys.stdout is a terminal)
* Merged revisions 75962-75963 via svnmerge fromAntoine Pitrou2009-10-302-2/+3
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75962 | antoine.pitrou | 2009-10-30 18:55:21 +0100 (ven., 30 oct. 2009) | 3 lines Try to fix transient refleaks in test_asynchat. ........ r75963 | antoine.pitrou | 2009-10-30 18:56:00 +0100 (ven., 30 oct. 2009) | 3 lines Try to fix transient refleaks in test_xmlrpc. ........
* Merged revisions 75960 via svnmerge fromAntoine Pitrou2009-10-301-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75960 | antoine.pitrou | 2009-10-30 18:33:28 +0100 (ven., 30 oct. 2009) | 3 lines Fix transient refleaks in test_docxmlrpc. ........
* Merged revisions 75958 via svnmerge fromAntoine Pitrou2009-10-305-13/+82
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75958 | antoine.pitrou | 2009-10-30 18:07:08 +0100 (ven., 30 oct. 2009) | 7 lines Issue #7222: Make thread "reaping" more reliable so that reference leak-chasing test runs give sensible results. The previous method of reaping threads could return successfully while some Thread objects were still referenced. This also introduces a new private function: :func:hread._count(). ........
* Merged revisions 75943-75945 via svnmerge fromMark Dickinson2009-10-294-25/+126
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75943 | mark.dickinson | 2009-10-29 11:09:09 +0000 (Thu, 29 Oct 2009) | 1 line Fix duplicate test numbers in extra.decTest ........ r75944 | mark.dickinson | 2009-10-29 12:04:00 +0000 (Thu, 29 Oct 2009) | 3 lines Issue #7233: A number of two-argument Decimal methods were failing to accept ints and longs for the second argument. ........ r75945 | mark.dickinson | 2009-10-29 12:11:18 +0000 (Thu, 29 Oct 2009) | 4 lines Issue #7233: Fix Decimal.shift and Decimal.rotate methods for arguments with more digits than the current context precision. Bug reported by Stefan Krah. ........
* Merged revisions 75939 via svnmerge fromMark Dickinson2009-10-292-26/+9
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75939 | mark.dickinson | 2009-10-29 09:46:04 +0000 (Thu, 29 Oct 2009) | 5 lines Roll back ill-considered attempts to fix printf specifier mismatch for off_t. The sensible solution seems to be to implement %lld for PyString_FromFormat(V) and PyErr_Format. See issue #7228. ........
* Merged revisions 75935 via svnmerge fromLars Gustäbel2009-10-292-2/+6
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75935 | lars.gustaebel | 2009-10-29 10:15:00 +0100 (Thu, 29 Oct 2009) | 3 lines Issue #4750: Store the basename of the original filename in the gzip FNAME header as required by RFC 1952. ........
* Blocked revisions 75931 via svnmergeBenjamin Peterson2009-10-290-0/+0
| | | | | | | | | | | ........ r75931 | benjamin.peterson | 2009-10-28 20:49:07 -0500 (Wed, 28 Oct 2009) | 5 lines do a backport of r75928 The added test does not fail without the patch, but we still fix the issue of surrogates being used in wide builds where they should not be. ........
* Issue 7199: Documentation made slightly more consistent w.r.t. logging level ↵Vinay Sajip2009-10-281-1/+1
| | | | enumeration.
* in wide builds, avoid storing high unicode characters from source code with ↵Benjamin Peterson2009-10-283-9/+25
| | | | | | | surrogates This is accomplished by decoding with utf-32 instead of utf-16 on all builds. The patch is by Adam Olsen.
* Merged revisions 75920 via svnmerge fromR. David Murray2009-10-281-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75920 | r.david.murray | 2009-10-28 10:03:43 -0400 (Wed, 28 Oct 2009) | 2 lines Remove variable that is no longer used. ........
* Blocked revisions 75913 via svnmergeEric Smith2009-10-280-0/+0
| | | | | | | | ........ r75913 | eric.smith | 2009-10-28 04:44:37 -0400 (Wed, 28 Oct 2009) | 1 line Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in _json.c as part of short float repr. Change made after consulting with Bob Ippolito. This completes the removal of calls to PyOS_ascii_strtod. ........
* Merged revisions 75909 via svnmerge fromMark Dickinson2009-10-281-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75909 | mark.dickinson | 2009-10-28 07:47:32 +0000 (Wed, 28 Oct 2009) | 1 line Fix format specifier for MSVC ........
* Merged revisions 75905 via svnmerge fromMark Dickinson2009-10-281-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75905 | mark.dickinson | 2009-10-28 07:23:49 +0000 (Wed, 28 Oct 2009) | 1 line Replace long long with PY_LONG_LONG ........
* Merged revisions 75901 via svnmerge fromTarek Ziadé2009-10-281-29/+18
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75901 | tarek.ziade | 2009-10-28 07:45:18 +0100 (Wed, 28 Oct 2009) | 1 line removed spurious spaces ........
* Merged revisions 75893 via svnmerge fromTarek Ziadé2009-10-277-9/+73
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75893 | tarek.ziade | 2009-10-28 00:06:10 +0100 (Wed, 28 Oct 2009) | 1 line Fixed #1180: Option to ignore ~/.pydistutils.cfg in Distutils ........
* Remove extra blank line accidentally introduced in r75885Mark Dickinson2009-10-271-1/+0
|
* Merged revisions 75887 via svnmerge fromGeorg Brandl2009-10-271-1/+8
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75887 | georg.brandl | 2009-10-27 23:56:09 +0100 (Di, 27 Okt 2009) | 1 line Make sure every run of test_intern() interns a new string, otherwise that test fails e.g. when some other test in test_builtin fails and it is rerun in verbose mode. ........
* Merged revisions 75883 via svnmerge fromMark Dickinson2009-10-271-0/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75883 | mark.dickinson | 2009-10-27 22:09:33 +0000 (Tue, 27 Oct 2009) | 1 line Test long inputs to float ........
* Merged revisions 75879 via svnmerge fromMark Dickinson2009-10-272-3/+14
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75879 | mark.dickinson | 2009-10-27 21:48:20 +0000 (Tue, 27 Oct 2009) | 3 lines Silence gcc warnings when trying to print an off_t using "lld", on platforms where off_t has type long (e.g., 64-bit Linux). ........
* Only declare variable when it's used.Georg Brandl2009-10-271-0/+2
|
* Merged revisions 75874 via svnmerge fromAntoine Pitrou2009-10-271-1/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75874 | antoine.pitrou | 2009-10-27 22:27:24 +0100 (mar., 27 oct. 2009) | 4 lines Reduce the probability of refleaks in test_socketserver. Not completely suppressed though, see issue #7222. ........
* Merged revisions 75871 via svnmerge fromTarek Ziadé2009-10-272-1/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75871 | tarek.ziade | 2009-10-27 22:20:27 +0100 (Tue, 27 Oct 2009) | 1 line Issue #7218: Fix test_site for win32 ........
* remove shadowing declartionBenjamin Peterson2009-10-271-1/+0
|
* Merged revisions 75866-75867 via svnmerge fromGeorg Brandl2009-10-272-33/+54
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75866 | georg.brandl | 2009-10-27 21:52:02 +0100 (Di, 27 Okt 2009) | 1 line Add a regrtest option to re-run in verbose mode immediately after a test fails, and use that option on the buildbots. ........ r75867 | georg.brandl | 2009-10-27 21:55:44 +0100 (Di, 27 Okt 2009) | 1 line Reformat the regrtest command-line option help and group the options into sections. ........
* Merged revisions 75860 via svnmerge fromAntoine Pitrou2009-10-271-0/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75860 | antoine.pitrou | 2009-10-27 21:20:41 +0100 (mar., 27 oct. 2009) | 3 lines Try to fix transient refleaks in test_distutils. ........
* Merged revisions 75855 via svnmerge fromAntoine Pitrou2009-10-271-2/+10
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75855 | antoine.pitrou | 2009-10-27 21:14:04 +0100 (mar., 27 oct. 2009) | 3 lines Fix transient refleaks in test_urllib2_localnet. ........
* Merged revisions 75851 via svnmerge fromAntoine Pitrou2009-10-271-3/+12
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75851 | antoine.pitrou | 2009-10-27 21:02:23 +0100 (mar., 27 oct. 2009) | 3 lines Suppress transient refleaks in test_threading. ........
* Merged revisions 75849 via svnmerge fromAntoine Pitrou2009-10-271-4/+20
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75849 | antoine.pitrou | 2009-10-27 20:47:30 +0100 (mar., 27 oct. 2009) | 3 lines Suppress transient refleaks in test_smtplib. ........
* Blocked revisions 75846 via svnmergeEric Smith2009-10-270-0/+0
| | | | | | | | ........ r75846 | eric.smith | 2009-10-27 15:42:57 -0400 (Tue, 27 Oct 2009) | 1 line Removed PyOS_ascii_atof from marshal.c, as mentioned in issue 7117. Also brings it more in line with py3k. ........
* Blocked revisions 75844 via svnmergeAntoine Pitrou2009-10-270-0/+0
| | | | | | | | ........ r75844 | antoine.pitrou | 2009-10-27 20:36:44 +0100 (mar., 27 oct. 2009) | 3 lines Suppress transient refleaks in test_file2k. ........
* Merged revisions 75842 via svnmerge fromAntoine Pitrou2009-10-271-2/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75842 | antoine.pitrou | 2009-10-27 20:23:56 +0100 (mar., 27 oct. 2009) | 3 lines Fix transient refleak in test_sys. ........
* Merged revisions 75838 via svnmerge fromAntoine Pitrou2009-10-271-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75838 | antoine.pitrou | 2009-10-27 19:50:52 +0100 (mar., 27 oct. 2009) | 3 lines (Hopefully) suppress transient refleaks in test_httpservers. ........