summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Recorded merge of revisions 72830 via svnmerge fromGeorg Brandl2009-05-222-6/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72830 | georg.brandl | 2009-05-22 12:40:00 +0200 (Fr, 22 Mai 2009) | 1 line #6086: fix spelling and use a better exception to catch. ........
* Blocked revisions 72828 via svnmergeGeorg Brandl2009-05-220-0/+0
| | | | | | | | ........ r72828 | georg.brandl | 2009-05-22 11:58:48 +0200 (Fr, 22 Mai 2009) | 1 line Correction in softspace behavior description. ........
* Recorded merge of revisions 72813 via svnmerge fromGeorg Brandl2009-05-220-0/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72813 | raymond.hettinger | 2009-05-22 03:06:44 +0200 (Fr, 22 Mai 2009) | 1 line Fix-up moving average example. ........
* Merged revisions 72817 via svnmerge fromPhilip Jenvey2009-05-222-2/+14
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72817 | philip.jenvey | 2009-05-21 22:35:32 -0700 (Thu, 21 May 2009) | 4 lines don't use subprocess.call with PIPEs as the child can fill the pipe buf and deadlock. add a warning to subprocess docs about this, similar to Popen.wait's. refs http://bugs.jython.org/issue1351 ........
* Fix-up moving average example.Raymond Hettinger2009-05-221-3/+2
|
* Refactor to remove duplicated nan/inf parsing code inMark Dickinson2009-05-205-125/+85
| | | | pystrtod.c, floatobject.c and dtoa.c.
* Merged revisions 72776,72796 via svnmerge fromJeffrey Yasskin2009-05-202-16/+44
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72776 | jeffrey.yasskin | 2009-05-18 14:14:54 -0700 (Mon, 18 May 2009) | 6 lines While I was modifying test_trace, it threw an exception when I accidentally made it try to set the line number from the trace callback for a 'call' event. This patch makes the error message a little more helpful in that case, and makes it a little less likely that a future editor will make the same mistake in test_trace. ........ r72796 | jeffrey.yasskin | 2009-05-20 10:57:57 -0700 (Wed, 20 May 2009) | 3 lines Fix issue #1689458 by teaching frame_setlineno how to jump to the first line of a code object. ........
* Blocked revisions 72805 via svnmergeMark Dickinson2009-05-200-0/+0
| | | | | | | | ........ r72805 | mark.dickinson | 2009-05-20 19:43:07 +0100 (Wed, 20 May 2009) | 1 line Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72803. ........
* Issue #5829: complex('1e500') shouldn't raise OverflowErrorMark Dickinson2009-05-203-2/+13
|
* Merged revisions 72799 via svnmerge fromGeorg Brandl2009-05-202-26/+26
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72799 | georg.brandl | 2009-05-20 20:24:08 +0200 (Mi, 20 Mai 2009) | 1 line Update bug tracker URL. ........
* Merged revisions 72794 via svnmerge fromMark Dickinson2009-05-201-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72794 | mark.dickinson | 2009-05-20 18:55:31 +0100 (Wed, 20 May 2009) | 1 line typos in ctypes Module ........
* Merge r72792: POP_MARK was not in pickle protocol 0, SHORT_BINBYTES was not ↵Collin Winter2009-05-201-2/+2
| | | | in protocol 1.
* Merged revisions 72789 via svnmerge fromRonald Oussoren2009-05-192-7/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72789 | ronald.oussoren | 2009-05-19 21:29:24 +0200 (Tue, 19 May 2009) | 2 lines Remove some traces of 'MacPython' ........
* Merged revisions 72787 via svnmerge fromRonald Oussoren2009-05-191-1/+1
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72787 | ronald.oussoren | 2009-05-19 21:06:38 +0200 (Tue, 19 May 2009) | 8 lines This patch ensures that the pydoc_data package gets installed. This is needed to make it possible to use pydoc to get access to the language reference. That is, without this patch the folllowing won't work: >>> help('if') ........
* Note that ordered dictionaries work with reversed().Raymond Hettinger2009-05-191-0/+3
|
* Merged revisions 72781 via svnmerge fromTarek Ziadé2009-05-193-11/+38
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72781 | tarek.ziade | 2009-05-19 18:17:21 +0200 (Tue, 19 May 2009) | 1 line fixed the 'package' option of build_ext ........
* MACOSXRonald Oussoren2009-05-1926-712/+5
| | | | | | * Remove junk documentation resources from the Python.app inside the framework (This is a left-over from the ancient Python IDE, which was removed before 2.5) * Ensure that the documentation is installed in a location where IDLE will see it
* Merged revisions 72777 via svnmerge fromCollin Winter2009-05-182-18/+22
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72777 | collin.winter | 2009-05-18 14:35:40 -0700 (Mon, 18 May 2009) | 1 line Issue 6032: fix refleaks in test_urllib2_localnet. ........
* Issue 6037: MutableSequence.__iadd__ should return self.Raymond Hettinger2009-05-181-0/+1
|
* Merged revisions 72768 via svnmerge fromTarek Ziadé2009-05-183-3/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72768 | tarek.ziade | 2009-05-18 14:21:26 +0200 (Mon, 18 May 2009) | 1 line Fixed #6053 - win32 fixes for distutils tests ........
* Merged revisions 72764 via svnmerge fromTarek Ziadé2009-05-181-2/+14
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72764 | tarek.ziade | 2009-05-18 10:20:55 +0200 (Mon, 18 May 2009) | 1 line working with relative paths to avoid tar warnings on absolute paths ........
* Merged revisions 72758 via svnmerge fromTarek Ziadé2009-05-183-8/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72758 | tarek.ziade | 2009-05-18 10:03:37 +0200 (Mon, 18 May 2009) | 1 line Fixed the library extension when distutils build_ext is used inplace ........
* Remove trailing whitespace.Georg Brandl2009-05-171-3/+3
|
* Issue 5964: Fixed WeakSet __eq__ comparison to handle non-WeakSet objects.Robert Schuppenies2009-05-172-10/+15
|
* Merged revisions 72746 via svnmerge fromTarek Ziadé2009-05-171-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72746 | tarek.ziade | 2009-05-17 16:59:05 +0200 (Sun, 17 May 2009) | 1 line fixed the test name ........
* More conversion to new-style optional args.Georg Brandl2009-05-1719-129/+120
|
* Use true booleans.Georg Brandl2009-05-171-2/+2
|
* Remove surplus empty lines and convert more files to new optional arg style.Georg Brandl2009-05-1739-74/+38
|
* Use PEP 8 and true booleans.Georg Brandl2009-05-171-8/+9
|
* Use PEP 8 and true booleans.Georg Brandl2009-05-171-6/+6
|
* Merged revisions 72736 via svnmerge fromTarek Ziadé2009-05-172-40/+110
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72736 | tarek.ziade | 2009-05-17 14:04:57 +0200 (Sun, 17 May 2009) | 1 line pep8-fied distutils.archive_util + added minimum test coverage ........
* Use new optional argument style in email docs.Georg Brandl2009-05-179-86/+72
|
* Merged revisions 72730 via svnmerge fromTarek Ziadé2009-05-171-57/+48
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72730 | tarek.ziade | 2009-05-17 13:22:36 +0200 (Sun, 17 May 2009) | 1 line pep8-fied distutils.dir_util ........
* Merged revisions 72727 via svnmerge fromTarek Ziadé2009-05-172-11/+14
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72727 | tarek.ziade | 2009-05-17 13:11:57 +0200 (Sun, 17 May 2009) | 1 line removed sys.platform == 'mac' usage in distutils.dir_util ........
* Merged revisions 72721 via svnmerge fromTarek Ziadé2009-05-172-25/+38
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72721 | tarek.ziade | 2009-05-17 12:44:12 +0200 (Sun, 17 May 2009) | 1 line removed sys.platform == 'mac' support in distutils.dist.parse_command_line and improved test coverage ........
* Update framework installation makefiles to deal correctly with theRonald Oussoren2009-05-171-23/+19
| | | | rename of 'python' to 'python3'
* Merged revisions 72718 via svnmerge fromMark Dickinson2009-05-171-2/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72718 | mark.dickinson | 2009-05-17 11:38:30 +0100 (Sun, 17 May 2009) | 4 lines Issue #6044: remove confusing wording from complex -> integer and complex -> float conversion error messages. ........
* Merged revisions 72713 via svnmerge fromTarek Ziadé2009-05-171-0/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72713 | tarek.ziade | 2009-05-17 12:07:48 +0200 (Sun, 17 May 2009) | 1 line not running this test with MSVC6 ........
* We dont have dbm.bsd support anymore.Georg Brandl2009-05-171-3/+3
|
* Recorded merge of revisions 72708 via svnmerge fromGeorg Brandl2009-05-171-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72708 | georg.brandl | 2009-05-17 10:24:29 +0200 (So, 17 Mai 2009) | 1 line #6017: better document behavior of dictiterators when the dict is changed. ........
* Remove unused variables.Georg Brandl2009-05-171-2/+1
|
* Fix a warning.Georg Brandl2009-05-171-1/+1
|
* Merged revisions 72703 via svnmerge fromGeorg Brandl2009-05-171-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72703 | georg.brandl | 2009-05-17 10:10:27 +0200 (So, 17 Mai 2009) | 1 line part of #4144: fix exception message in console session. ........
* #4144: fix output of console sessions.Georg Brandl2009-05-171-2/+2
|
* Merged revisions 72698-72699 via svnmerge fromHirokazu Yamamoto2009-05-176-41/+23
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72698 | hirokazu.yamamoto | 2009-05-17 11:52:09 +0900 | 1 line Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more. ........ r72699 | hirokazu.yamamoto | 2009-05-17 11:58:36 +0900 | 1 line Added NEWS for r72698. ........
* Blocked revisions 72696 via svnmergeBenjamin Peterson2009-05-160-0/+0
| | | | | | | | ........ r72696 | benjamin.peterson | 2009-05-16 18:34:19 -0500 (Sat, 16 May 2009) | 1 line typo ........
* Blocked revisions 72692-72694 via svnmergeBenjamin Peterson2009-05-160-0/+0
| | | | | | | | | | | | | | | | ........ r72692 | benjamin.peterson | 2009-05-16 17:30:48 -0500 (Sat, 16 May 2009) | 1 line deal with old-style classes in issubclass and isinstance ........ r72693 | benjamin.peterson | 2009-05-16 17:40:56 -0500 (Sat, 16 May 2009) | 1 line completely ignore old-style stuff for type checking overloading ........ r72694 | benjamin.peterson | 2009-05-16 17:46:11 -0500 (Sat, 16 May 2009) | 1 line update ........
* Merged revisions 72690 via svnmerge fromBenjamin Peterson2009-05-163-39/+25
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72690 | benjamin.peterson | 2009-05-16 16:44:25 -0500 (Sat, 16 May 2009) | 1 line properly lookup __instancecheck__ and __subclasscheck__ ........
* Merged revisions 72686 via svnmerge fromTarek Ziadé2009-05-161-65/+38
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72686 | tarek.ziade | 2009-05-16 20:29:40 +0200 (Sat, 16 May 2009) | 1 line pep8-fied distutils.dist module ........
* Merged revisions 72681 via svnmerge fromTarek Ziadé2009-05-166-72/+182
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72681 | tarek.ziade | 2009-05-16 18:37:06 +0200 (Sat, 16 May 2009) | 1 line #6041: sdist and register now use the check command. No more duplicate code for metadata checking ........