]>
granicus.if.org Git - python/log
Antoine Pitrou [Thu, 1 Oct 2009 16:27:13 +0000 (16:27 +0000)]
Merged revisions 75168 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r75168 | antoine.pitrou | 2009-10-01 18:24:45 +0200 (jeu., 01 oct. 2009) | 3 lines
Issue #7022: clarification of RawIOBase.read(), suggested by Pascal Chambon.
........
Benjamin Peterson [Thu, 1 Oct 2009 00:10:50 +0000 (00:10 +0000)]
update opensearch
Mark Dickinson [Wed, 30 Sep 2009 17:54:52 +0000 (17:54 +0000)]
Blocked revisions 75158 via svnmerge
................
r75158 | mark.dickinson | 2009-09-30 18:47:54 +0100 (Wed, 30 Sep 2009) | 9 lines
Merged revisions 75157 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75157 | mark.dickinson | 2009-09-30 17:58:01 +0100 (Wed, 30 Sep 2009) | 1 line
Fix buggy accuracy test
........
................
Mark Dickinson [Tue, 29 Sep 2009 19:24:38 +0000 (19:24 +0000)]
Merged revisions 75145 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k
................
r75145 | mark.dickinson | 2009-09-29 20:21:35 +0100 (Tue, 29 Sep 2009) | 10 lines
Merged revisions 75141 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75141 | mark.dickinson | 2009-09-29 20:01:06 +0100 (Tue, 29 Sep 2009) | 3 lines
Issue #7019: Unmarshalling of bad long data could produce unnormalized
PyLongs. Raise ValueError instead.
........
................
Antoine Pitrou [Tue, 29 Sep 2009 19:02:24 +0000 (19:02 +0000)]
Merged revisions 75137 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75137 | antoine.pitrou | 2009-09-29 20:44:53 +0200 (mar., 29 sept. 2009) | 14 lines
[NOTE: the original bug doesn't exist in py3k but this adds Kirk's tests and fixes
another bug in the process]
Merged revisions 75134 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75134 | antoine.pitrou | 2009-09-29 19:48:18 +0200 (mar., 29 sept. 2009) | 4 lines
Issue #6790: Make it possible again to pass an `array.array` to
`httplib.HTTPConnection.send`. Patch by Kirk McDonald.
........
................
Raymond Hettinger [Tue, 29 Sep 2009 18:56:36 +0000 (18:56 +0000)]
Issue 7008: Better document str.title and show how to work around the apostrophe problem.
Philip Jenvey [Tue, 29 Sep 2009 05:03:48 +0000 (05:03 +0000)]
Merged revisions 75125 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75125 | philip.jenvey | 2009-09-28 21:57:18 -0700 (Mon, 28 Sep 2009) | 11 lines
Recorded merge of revisions 75123 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75123 | philip.jenvey | 2009-09-28 21:32:44 -0700 (Mon, 28 Sep 2009) | 4 lines
#6990: clear threading.local's key only after its thread state is removed:
fixes local subclasses leaving old state around after a ref cycle GC which
could be recycled by new locals
........
................
Mark Dickinson [Mon, 28 Sep 2009 19:23:20 +0000 (19:23 +0000)]
Blocked revisions 75119 via svnmerge
................
r75119 | mark.dickinson | 2009-09-28 20:21:11 +0100 (Mon, 28 Sep 2009) | 10 lines
Merged revisions 75117 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75117 | mark.dickinson | 2009-09-28 19:54:55 +0100 (Mon, 28 Sep 2009) | 3 lines
Issue #3366: Add gamma function to math module.
(lgamma, erf and erfc to follow).
........
................
Mark Dickinson [Mon, 28 Sep 2009 17:55:30 +0000 (17:55 +0000)]
Blocked revisions 75113 via svnmerge
................
r75113 | mark.dickinson | 2009-09-28 18:54:52 +0100 (Mon, 28 Sep 2009) | 16 lines
Merged revisions 75110 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75110 | mark.dickinson | 2009-09-28 17:52:40 +0100 (Mon, 28 Sep 2009) | 9 lines
Style/consistency/nano-optimization nit: replace occurrences of
(high_bits << PyLong_SHIFT) + low_bits with
(high_bits << PyLong_SHIFT) | low_bits
in Objects/longobject.c. Motivation:
- shouldn't unnecessarily mix bit ops with arithmetic ops (style)
- this pattern should be spelt the same way thoughout (consistency)
- it's very very very slightly faster: no need to worry about
carries to the high digit (nano-optimization).
........
................
Benjamin Peterson [Sun, 27 Sep 2009 16:42:15 +0000 (16:42 +0000)]
Merged revisions 75090 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r75090 | benjamin.peterson | 2009-09-27 11:32:56 -0500 (Sun, 27 Sep 2009) | 1 line
use more correct callable replacement
........
Ezio Melotti [Sat, 26 Sep 2009 12:35:01 +0000 (12:35 +0000)]
Merged revisions 75074 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75074 | ezio.melotti | 2009-09-26 15:33:22 +0300 (Sat, 26 Sep 2009) | 9 lines
Merged revisions 75070 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75070 | ezio.melotti | 2009-09-26 14:20:53 +0300 (Sat, 26 Sep 2009) | 1 line
#7000: document "sep" in capwords. Add a few tests
........
................
Ezio Melotti [Sat, 26 Sep 2009 12:27:13 +0000 (12:27 +0000)]
Merged revisions 75072 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r75072 | ezio.melotti | 2009-09-26 15:19:30 +0300 (Sat, 26 Sep 2009) | 1 line
string.capwords is still around, adding back the tests
........
Ezio Melotti [Fri, 25 Sep 2009 21:38:29 +0000 (21:38 +0000)]
Merged revisions 75064 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r75064 | ezio.melotti | 2009-09-26 00:35:24 +0300 (Sat, 26 Sep 2009) | 1 line
fix print statement
........
Benjamin Peterson [Fri, 25 Sep 2009 21:13:17 +0000 (21:13 +0000)]
Merged revisions 75061-75062 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r75061 | benjamin.peterson | 2009-09-25 15:34:04 -0500 (Fri, 25 Sep 2009) | 1 line
fix print statement
........
r75062 | benjamin.peterson | 2009-09-25 15:56:52 -0500 (Fri, 25 Sep 2009) | 2 lines
correct the fixpath.py script to work in Python 3 #6999
........
Ezio Melotti [Fri, 25 Sep 2009 20:15:31 +0000 (20:15 +0000)]
Merged revisions 75059 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r75059 | ezio.melotti | 2009-09-25 23:14:02 +0300 (Fri, 25 Sep 2009) | 1 line
#6998: fix missing () on a print
........
Ezio Melotti [Fri, 25 Sep 2009 16:14:31 +0000 (16:14 +0000)]
Merged revisions 75057 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75057 | ezio.melotti | 2009-09-25 19:12:33 +0300 (Fri, 25 Sep 2009) | 9 lines
Merged revisions 75055 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75055 | ezio.melotti | 2009-09-25 19:07:55 +0300 (Fri, 25 Sep 2009) | 1 line
#6994: fix typo in enumerate docstring
........
................
Mark Dickinson [Thu, 24 Sep 2009 20:05:02 +0000 (20:05 +0000)]
Blocked revisions 75051 via svnmerge
........
r75051 | mark.dickinson | 2009-09-24 21:04:23 +0100 (Thu, 24 Sep 2009) | 3 lines
Issue #
1766304 : The range.__contains__ optimization should only be
applied to ints, not to instances of subclasses of int.
........
Mark Dickinson [Thu, 24 Sep 2009 19:25:39 +0000 (19:25 +0000)]
Merged revisions 75049 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75049 | mark.dickinson | 2009-09-24 20:24:44 +0100 (Thu, 24 Sep 2009) | 10 lines
Merged revisions 75047 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75047 | mark.dickinson | 2009-09-24 20:21:07 +0100 (Thu, 24 Sep 2009) | 3 lines
Issue #6982: Add generated Lib/lib2to3/*.pickle files to 'make clean' target.
Thanks egreen.
........
................
Mark Dickinson [Thu, 24 Sep 2009 18:32:37 +0000 (18:32 +0000)]
Blocked revisions 75045 via svnmerge
........
r75045 | mark.dickinson | 2009-09-24 19:31:17 +0100 (Thu, 24 Sep 2009) | 1 line
Silence compiler warning
........
Georg Brandl [Thu, 24 Sep 2009 05:53:19 +0000 (05:53 +0000)]
Merged revisions 74749 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r74749 | r.david.murray | 2009-09-12 05:09:02 +0200 (Sa, 12 Sep 2009) | 2 lines
Fix typo.
........
Ezio Melotti [Wed, 23 Sep 2009 21:44:27 +0000 (21:44 +0000)]
Merged revisions 75041 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75041 | ezio.melotti | 2009-09-24 00:42:25 +0300 (Thu, 24 Sep 2009) | 9 lines
Merged revisions 75039 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75039 | ezio.melotti | 2009-09-24 00:36:39 +0300 (Thu, 24 Sep 2009) | 1 line
improved phrasing, markup and example
........
................
Mark Dickinson [Tue, 22 Sep 2009 21:53:09 +0000 (21:53 +0000)]
Blocked revisions 75030 via svnmerge
........
r75030 | mark.dickinson | 2009-09-22 22:52:03 +0100 (Tue, 22 Sep 2009) | 1 line
Add Robert Lehmann for issue #
1766304 patch
........
Mark Dickinson [Tue, 22 Sep 2009 21:49:35 +0000 (21:49 +0000)]
Blocked revisions 75028 via svnmerge
........
r75028 | mark.dickinson | 2009-09-22 22:47:24 +0100 (Tue, 22 Sep 2009) | 4 lines
Issue #
1766304 : Optimize membership testing for ranges: 'n in range(...)'
does an O(1) check, if n is an integer. Non-integers aren't affected.
Thanks Robert Lehmann.
........
Brett Cannon [Tue, 22 Sep 2009 20:12:41 +0000 (20:12 +0000)]
Merged revisions 75026 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75026 | brett.cannon | 2009-09-22 13:08:09 -0700 (Tue, 22 Sep 2009) | 9 lines
Merged revisions 75024 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75024 | brett.cannon | 2009-09-22 13:04:24 -0700 (Tue, 22 Sep 2009) | 1 line
Fix a minor doc syntax typo.
........
................
Tarek Ziadé [Tue, 22 Sep 2009 10:14:51 +0000 (10:14 +0000)]
Merged revisions 75013 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75013 | tarek.ziade | 2009-09-22 12:08:13 +0200 (Tue, 22 Sep 2009) | 10 lines
Merged revisions 74812 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74812 | ronald.oussoren | 2009-09-15 23:24:07 +0200 (Tue, 15 Sep 2009) | 3 lines
Update distutils.util tests after my changes
to --with-universal-archs
........
................
Antoine Pitrou [Mon, 21 Sep 2009 21:42:29 +0000 (21:42 +0000)]
Merged revisions 75009 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75009 | antoine.pitrou | 2009-09-21 23:37:02 +0200 (lun., 21 sept. 2009) | 13 lines
Merged revisions 75007 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75007 | antoine.pitrou | 2009-09-21 23:17:48 +0200 (lun., 21 sept. 2009) | 7 lines
Issue #6236, #6348: Fix various failures in the io module under AIX
and other platforms, when using a non-gcc compiler. Patch by egreen.
In addition, I made explicit the signedness of all bitfields in the
IO library.
........
................
Mark Dickinson [Mon, 21 Sep 2009 16:19:23 +0000 (16:19 +0000)]
Blocked revisions 75005 via svnmerge
................
r75005 | mark.dickinson | 2009-09-21 17:18:27 +0100 (Mon, 21 Sep 2009) | 9 lines
Merged revisions 75003 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75003 | mark.dickinson | 2009-09-21 17:16:44 +0100 (Mon, 21 Sep 2009) | 1 line
Silence MSVC compiler warnings.
........
................
R. David Murray [Mon, 21 Sep 2009 14:39:26 +0000 (14:39 +0000)]
Merged revisions 74740 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74740 | benjamin.peterson | 2009-09-11 16:42:29 -0400 (Fri, 11 Sep 2009) | 1 line
kill reference to default encoding #6889
........
Senthil Kumaran [Mon, 21 Sep 2009 14:12:44 +0000 (14:12 +0000)]
I guess, someone overlooked this one in howto. (it is
proper in trunk. That particular line is removed).
Tarek Ziadé [Mon, 21 Sep 2009 13:59:07 +0000 (13:59 +0000)]
Merged revisions 74999 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74999 | tarek.ziade | 2009-09-21 15:55:19 +0200 (Mon, 21 Sep 2009) | 13 lines
Merged revisions 74994,74997 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74994 | tarek.ziade | 2009-09-21 15:41:08 +0200 (Mon, 21 Sep 2009) | 1 line
#6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils.
........
r74997 | tarek.ziade | 2009-09-21 15:49:57 +0200 (Mon, 21 Sep 2009) | 1 line
forgot to commit a file in previous commit (r74994, issue #6954)
........
................
Tarek Ziadé [Mon, 21 Sep 2009 13:10:05 +0000 (13:10 +0000)]
Merged revisions 74990 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74990 | tarek.ziade | 2009-09-21 15:01:54 +0200 (Mon, 21 Sep 2009) | 9 lines
Merged revisions 74988 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74988 | tarek.ziade | 2009-09-21 14:19:07 +0200 (Mon, 21 Sep 2009) | 1 line
improved distutils test coverage: now the DEBUG mode is covered too (will help fix the issue #6954 in py3k branch)
........
................
Doug Hellmann [Mon, 21 Sep 2009 12:16:43 +0000 (12:16 +0000)]
Merged revisions 74986 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74986 | doug.hellmann | 2009-09-20 16:56:56 -0400 (Sun, 20 Sep 2009) | 9 lines
Merged revisions 74984 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74984 | doug.hellmann | 2009-09-20 16:44:13 -0400 (Sun, 20 Sep 2009) | 2 lines
Fix markup for external links.
........
................
Ronald Oussoren [Sun, 20 Sep 2009 20:10:02 +0000 (20:10 +0000)]
Merged revisions 74979 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74979 | ronald.oussoren | 2009-09-20 22:09:26 +0200 (Sun, 20 Sep 2009) | 9 lines
Merged revisions 74978 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74978 | ronald.oussoren | 2009-09-20 22:05:44 +0200 (Sun, 20 Sep 2009) | 2 lines
Fix typo in error message
........
................
Ronald Oussoren [Sun, 20 Sep 2009 18:58:52 +0000 (18:58 +0000)]
Merged revisions 74974 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74974 | ronald.oussoren | 2009-09-20 20:57:50 +0200 (Sun, 20 Sep 2009) | 12 lines
Merged revisions 74972 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74972 | ronald.oussoren | 2009-09-20 20:54:16 +0200 (Sun, 20 Sep 2009) | 5 lines
Merge a newer version of libffi_osx, based on the
version of libffi in OSX 10.6.1.
This fixes issue6918
........
................
Ronald Oussoren [Sun, 20 Sep 2009 11:28:04 +0000 (11:28 +0000)]
Merged revisions 74968 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74968 | ronald.oussoren | 2009-09-20 13:22:29 +0200 (Sun, 20 Sep 2009) | 9 lines
Merged revisions 74966 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74966 | ronald.oussoren | 2009-09-20 13:19:00 +0200 (Sun, 20 Sep 2009) | 2 lines
For for issue 6934: failures in postflight script in OSX installer
........
................
Ezio Melotti [Sun, 20 Sep 2009 07:22:00 +0000 (07:22 +0000)]
Merged revisions 74960 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74960 | ezio.melotti | 2009-09-20 10:19:57 +0300 (Sun, 20 Sep 2009) | 9 lines
Merged revisions 74958 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74958 | ezio.melotti | 2009-09-20 10:10:39 +0300 (Sun, 20 Sep 2009) | 1 line
#6881 - fixed wrong return type; improved the formatting
........
................
R. David Murray [Sat, 19 Sep 2009 19:04:37 +0000 (19:04 +0000)]
Merged revisions 74881-74885,74888,74891-74895,74900,74905-74906,74931-74932,74934,74941-74942,74944,74956 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74881 | r.david.murray | 2009-09-17 15:12:49 -0400 (Thu, 17 Sep 2009) | 2 lines
Check in first draft of maintainers.rst.
........
r74882 | eric.smith | 2009-09-17 15:22:30 -0400 (Thu, 17 Sep 2009) | 1 line
Typo.
........
r74883 | mark.dickinson | 2009-09-17 15:37:28 -0400 (Thu, 17 Sep 2009) | 1 line
Add some more module maintainers.
........
r74884 | mark.dickinson | 2009-09-17 15:39:12 -0400 (Thu, 17 Sep 2009) | 1 line
Revert accidental changes to Objects/longobject.c
........
r74885 | mark.dickinson | 2009-09-17 16:20:01 -0400 (Thu, 17 Sep 2009) | 1 line
Add decimal maintainers
........
r74888 | r.david.murray | 2009-09-17 18:10:48 -0400 (Thu, 17 Sep 2009) | 2 lines
Maintainer additions from MAL.
........
r74891 | georg.brandl | 2009-09-17 18:18:01 -0400 (Thu, 17 Sep 2009) | 1 line
Some more maintainers.
........
r74892 | r.david.murray | 2009-09-17 19:23:56 -0400 (Thu, 17 Sep 2009) | 2 lines
Add a couple interest areas for Nick per his request.
........
r74893 | r.david.murray | 2009-09-17 19:43:20 -0400 (Thu, 17 Sep 2009) | 2 lines
Benajmin is also compiler-knowledgeable.
........
r74894 | alexandre.vassalotti | 2009-09-17 20:59:05 -0400 (Thu, 17 Sep 2009) | 2 lines
Added myself to my areas of interest.
........
r74895 | brett.cannon | 2009-09-17 21:03:35 -0400 (Thu, 17 Sep 2009) | 1 line
Add myself to a couple places as maintainer.
........
r74900 | georg.brandl | 2009-09-18 05:06:37 -0400 (Fri, 18 Sep 2009) | 1 line
Add myself in interest areas.
........
r74905 | ezio.melotti | 2009-09-18 05:58:43 -0400 (Fri, 18 Sep 2009) | 1 line
Add myself in interest areas and mark effbot as inactive in winsound
........
r74906 | antoine.pitrou | 2009-09-18 09:15:23 -0400 (Fri, 18 Sep 2009) | 3 lines
Add myself in a couple of places
........
r74931 | r.david.murray | 2009-09-18 17:25:36 -0400 (Fri, 18 Sep 2009) | 5 lines
Add some names gleaned from the "Tracker Archeology" thread
on python-dev from back in February. Also consolidate
the autoconf and makefiles topics into one, and add tracker
and svn/hg topics.
........
r74932 | r.david.murray | 2009-09-18 17:32:16 -0400 (Fri, 18 Sep 2009) | 2 lines
Remove non-committer mistakenly added.
........
r74934 | r.david.murray | 2009-09-18 17:40:30 -0400 (Fri, 18 Sep 2009) | 2 lines
More descriptive/generic name for the svn/hg entry (version control)
........
r74941 | benjamin.peterson | 2009-09-18 18:45:59 -0400 (Fri, 18 Sep 2009) | 1 line
add a new category for myself
........
r74942 | benjamin.peterson | 2009-09-18 18:50:55 -0400 (Fri, 18 Sep 2009) | 1 line
add myself for symtable
........
r74944 | georg.brandl | 2009-09-19 03:39:05 -0400 (Sat, 19 Sep 2009) | 1 line
I would like to maintain the token module!
........
r74956 | r.david.murray | 2009-09-19 14:40:08 -0400 (Sat, 19 Sep 2009) | 3 lines
Add everyone who we know has been a release manager
as a resource for the 'release management' topic.
........
Thomas Heller [Sat, 19 Sep 2009 10:24:07 +0000 (10:24 +0000)]
Merged revisions 74949 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74949 | thomas.heller | 2009-09-19 12:12:45 +0200 (Sa, 19 Sep 2009) | 9 lines
Merged revisions 74948 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74948 | thomas.heller | 2009-09-19 12:04:54 +0200 (Sa, 19 Sep 2009) | 1 line
Remove unused variable and static function to fix compiler warnings.
........
................
Mark Dickinson [Fri, 18 Sep 2009 21:05:09 +0000 (21:05 +0000)]
Blocked revisions 74927 via svnmerge
................
r74927 | mark.dickinson | 2009-09-18 22:04:19 +0100 (Fri, 18 Sep 2009) | 9 lines
Merged revisions 74925 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74925 | mark.dickinson | 2009-09-18 22:01:50 +0100 (Fri, 18 Sep 2009) | 2 lines
Use skipUnless to skip math module tests on non-IEEE 754 platforms.
........
................
Thomas Heller [Fri, 18 Sep 2009 20:09:57 +0000 (20:09 +0000)]
Merged revisions 74922 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74922 | thomas.heller | 2009-09-18 22:08:39 +0200 (Fr, 18 Sep 2009) | 10 lines
Merged revisions 74921 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74921 | thomas.heller | 2009-09-18 22:05:44 +0200 (Fr, 18 Sep 2009) | 3 lines
Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...)
does now always result in NULL.
........
................
Thomas Heller [Fri, 18 Sep 2009 19:46:56 +0000 (19:46 +0000)]
Merged revisions 74918 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74918 | thomas.heller | 2009-09-18 21:05:13 +0200 (Fr, 18 Sep 2009) | 11 lines
Merged revisions 74917 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74917 | thomas.heller | 2009-09-18 20:55:17 +0200 (Fr, 18 Sep 2009) | 3 lines
Issue #5042: Structure sub-subclass does now initialize correctly with
base class positional arguments.
........
Also made small stylistic changes.
................
Mark Dickinson [Fri, 18 Sep 2009 18:38:26 +0000 (18:38 +0000)]
Blocked revisions 74914 via svnmerge
................
r74914 | mark.dickinson | 2009-09-18 19:36:57 +0100 (Fri, 18 Sep 2009) | 9 lines
Merged revisions 74913 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74913 | mark.dickinson | 2009-09-18 19:35:42 +0100 (Fri, 18 Sep 2009) | 2 lines
Add Gawain Bolton to Misc/ACKS for his work on base 10 integer -> string optimizations.
........
................
Mark Dickinson [Fri, 18 Sep 2009 14:53:47 +0000 (14:53 +0000)]
Blocked revisions 74910 via svnmerge
........
r74910 | mark.dickinson | 2009-09-18 15:53:08 +0100 (Fri, 18 Sep 2009) | 3 lines
Issue #6713 (continued): remove unused arbitrary-base conversion code
from _PyLong_Format.
........
Eric Smith [Fri, 18 Sep 2009 13:59:58 +0000 (13:59 +0000)]
Merged revisions 74907 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74907 | eric.smith | 2009-09-18 09:23:13 -0400 (Fri, 18 Sep 2009) | 1 line
Issue #6882: Import uuid creates zombies processes. I used a slightly different patch than the one attached to the issue, to be consistent with the style in the rest of the module.
........
Georg Brandl [Fri, 18 Sep 2009 07:28:54 +0000 (07:28 +0000)]
Blocked revisions 74897 via svnmerge
........
r74897 | georg.brandl | 2009-09-18 09:27:51 +0200 (Fr, 18 Sep 2009) | 1 line
#6935: update version.
........
Georg Brandl [Fri, 18 Sep 2009 07:28:32 +0000 (07:28 +0000)]
#6935: update version.
Georg Brandl [Thu, 17 Sep 2009 22:17:38 +0000 (22:17 +0000)]
Merged revisions 74889 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r74889 | georg.brandl | 2009-09-18 00:11:49 +0200 (Fr, 18 Sep 2009) | 17 lines
Merged revisions 74868,74877-74878 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74868 | georg.brandl | 2009-09-17 12:23:02 +0200 (Do, 17 Sep 2009) | 2 lines
String values should be shown with quotes, to avoid confusion with constants.
........
r74877 | georg.brandl | 2009-09-17 18:26:06 +0200 (Do, 17 Sep 2009) | 1 line
Remove duplicate doc of enable/disable_interspersed_args.
........
r74878 | georg.brandl | 2009-09-17 19:14:04 +0200 (Do, 17 Sep 2009) | 1 line
Make the optparse doc style a bit more standard: use standard description units for attrs/methods/etc., and use the correct referencing roles.
........
................
Antoine Pitrou [Thu, 17 Sep 2009 17:25:55 +0000 (17:25 +0000)]
Merged revisions 74879 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74879 | antoine.pitrou | 2009-09-17 19:18:01 +0200 (jeu., 17 sept. 2009) | 3 lines
Issue #6929: fix a couple of statements and clarify a lot of things in the IO docs.
........
Georg Brandl [Thu, 17 Sep 2009 11:46:23 +0000 (11:46 +0000)]
Merged revisions 74871 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r74871 | georg.brandl | 2009-09-17 13:41:24 +0200 (Do, 17 Sep 2009) | 12 lines
Merged revisions 74869 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk
(Only the new tests, the code had already been corrected due to an API change
in unicode_decode_call_errorhandler.)
........
r74869 | georg.brandl | 2009-09-17 13:28:09 +0200 (Do, 17 Sep 2009) | 4 lines
Issue #6922: Fix an infinite loop when trying to decode an invalid
UTF-32 stream with a non-raising error handler like "replace" or "ignore".
........
................
Mark Dickinson [Thu, 17 Sep 2009 00:18:24 +0000 (00:18 +0000)]
Blocked revisions 74858 via svnmerge
........
r74858 | mark.dickinson | 2009-09-17 01:17:48 +0100 (Thu, 17 Sep 2009) | 1 line
Bypass long_repr and _PyLong_Format for str(n), repr(n)
........
Mark Dickinson [Thu, 17 Sep 2009 00:07:16 +0000 (00:07 +0000)]
Blocked revisions 74856 via svnmerge
........
r74856 | mark.dickinson | 2009-09-17 01:06:41 +0100 (Thu, 17 Sep 2009) | 1 line
typo: Documenation -> Documentation
........
Mark Dickinson [Wed, 16 Sep 2009 21:24:11 +0000 (21:24 +0000)]
Blocked revisions 74851 via svnmerge
........
r74851 | mark.dickinson | 2009-09-16 22:23:34 +0100 (Wed, 16 Sep 2009) | 5 lines
Issue #6713: Improve performance of str(n) and repr(n) for integers n
(up to 3.1 times faster in tests), by special-casing base 10 in
_PyLong_Format.
........
Mark Dickinson [Wed, 16 Sep 2009 20:33:51 +0000 (20:33 +0000)]
Merged revisions 74846 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k
................
r74846 | mark.dickinson | 2009-09-16 21:32:35 +0100 (Wed, 16 Sep 2009) | 11 lines
Merged revisions 74843 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74843 | mark.dickinson | 2009-09-16 21:26:31 +0100 (Wed, 16 Sep 2009) | 4 lines
Remove outdated include; this include was breaking OS X builds using
non-Apple gcc4.3 and gcc4.4 (because CoreFoundation/CoreFoundation.h
won't compile under non-Apple gcc).
........
................
Georg Brandl [Wed, 16 Sep 2009 16:09:06 +0000 (16:09 +0000)]
Merged revisions 74792,74810 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r74792 | georg.brandl | 2009-09-14 16:49:30 +0200 (Mo, 14 Sep 2009) | 9 lines
Recorded merge of revisions 74791 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74791 | georg.brandl | 2009-09-14 16:08:54 +0200 (Mo, 14 Sep 2009) | 1 line
#6574: list the future features in a table.
........
................
r74810 | georg.brandl | 2009-09-15 21:55:15 +0200 (Di, 15 Sep 2009) | 1 line
Do not document the most important (at least for Guido) future import.
................
Georg Brandl [Wed, 16 Sep 2009 16:05:59 +0000 (16:05 +0000)]
Merged revisions 74821,74828-74831,74833,74835 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r74821 | georg.brandl | 2009-09-16 11:42:19 +0200 (Mi, 16 Sep 2009) | 1 line
#6885: run python 3 as python3.
................
r74828 | georg.brandl | 2009-09-16 16:23:20 +0200 (Mi, 16 Sep 2009) | 1 line
Use true booleans.
................
r74829 | georg.brandl | 2009-09-16 16:24:29 +0200 (Mi, 16 Sep 2009) | 1 line
Small PEP8 correction.
................
r74830 | georg.brandl | 2009-09-16 16:36:22 +0200 (Mi, 16 Sep 2009) | 1 line
Use true booleans.
................
r74831 | georg.brandl | 2009-09-16 17:54:04 +0200 (Mi, 16 Sep 2009) | 1 line
Use true booleans and PEP8 for argdefaults.
................
r74833 | georg.brandl | 2009-09-16 17:58:14 +0200 (Mi, 16 Sep 2009) | 1 line
Last round of adapting style of documenting argument default values.
................
r74835 | georg.brandl | 2009-09-16 18:00:31 +0200 (Mi, 16 Sep 2009) | 33 lines
Merged revisions 74817-74820,74822-74824 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74817 | georg.brandl | 2009-09-16 11:05:11 +0200 (Mi, 16 Sep 2009) | 1 line
Make deprecation notices as visible as warnings are right now.
........
r74818 | georg.brandl | 2009-09-16 11:23:04 +0200 (Mi, 16 Sep 2009) | 1 line
#6880: add reference to classes section in exceptions section, which comes earlier.
........
r74819 | georg.brandl | 2009-09-16 11:24:57 +0200 (Mi, 16 Sep 2009) | 1 line
#6876: fix base class constructor invocation in example.
........
r74820 | georg.brandl | 2009-09-16 11:30:48 +0200 (Mi, 16 Sep 2009) | 1 line
#6891: comment out dead link to Unicode article.
........
r74822 | georg.brandl | 2009-09-16 12:12:06 +0200 (Mi, 16 Sep 2009) | 1 line
#5621: refactor description of how class/instance attributes interact on a.x=a.x+1 or augassign.
........
r74823 | georg.brandl | 2009-09-16 15:06:22 +0200 (Mi, 16 Sep 2009) | 1 line
Remove strange trailing commas.
........
r74824 | georg.brandl | 2009-09-16 15:11:06 +0200 (Mi, 16 Sep 2009) | 1 line
#6892: fix optparse example involving help option.
........
................
Ezio Melotti [Wed, 16 Sep 2009 01:33:31 +0000 (01:33 +0000)]
Merged revisions 74815 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74815 | ezio.melotti | 2009-09-16 04:18:27 +0300 (Wed, 16 Sep 2009) | 1 line
#6910 - for->or typo
........
Ezio Melotti [Wed, 16 Sep 2009 00:57:27 +0000 (00:57 +0000)]
Merged revisions 74813 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74813 | ezio.melotti | 2009-09-16 03:49:03 +0300 (Wed, 16 Sep 2009) | 1 line
updated the doc to match the module docstring, fixed a couple of errors in the doc markup and in the module
........
Ronald Oussoren [Tue, 15 Sep 2009 19:16:40 +0000 (19:16 +0000)]
Merged revisions 74808 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74808 | ronald.oussoren | 2009-09-15 21:16:02 +0200 (Tue, 15 Sep 2009) | 10 lines
Merged revisions 74806 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74806 | ronald.oussoren | 2009-09-15 21:13:15 +0200 (Tue, 15 Sep 2009) | 3 lines
Finish support for --with-universal-archs=intel
and --with-universal-archs=3-way (issue6245)
........
................
Ronald Oussoren [Tue, 15 Sep 2009 19:11:53 +0000 (19:11 +0000)]
Merged revisions 74804 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74804 | ronald.oussoren | 2009-09-15 21:07:58 +0200 (Tue, 15 Sep 2009) | 15 lines
Merged revisions 74798 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74798 | ronald.oussoren | 2009-09-15 20:33:33 +0200 (Tue, 15 Sep 2009) | 8 lines
MacOSX: detect the architectures supported by
Tk.framework and build _tkinter only for those
architectures.
This replaces the hardcoded solution that is no
longer valid now that 64-bit capable versions of
Tk are available on OSX.
........
................
Ezio Melotti [Tue, 15 Sep 2009 18:57:03 +0000 (18:57 +0000)]
Merged revisions 74802 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74802 | ezio.melotti | 2009-09-15 21:51:37 +0300 (Tue, 15 Sep 2009) | 9 lines
Merged revisions 74799 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74799 | ezio.melotti | 2009-09-15 21:41:43 +0300 (Tue, 15 Sep 2009) | 1 line
#6917 - typo in method name
........
................
Benjamin Peterson [Tue, 15 Sep 2009 03:38:09 +0000 (03:38 +0000)]
Merged revisions 74794 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74794 | benjamin.peterson | 2009-09-14 22:34:15 -0500 (Mon, 14 Sep 2009) | 1 line
Py_(Set|Get)PythonHome use wchar_t #6913
........
Ezio Melotti [Mon, 14 Sep 2009 01:09:44 +0000 (01:09 +0000)]
Merged revisions 74788 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74788 | ezio.melotti | 2009-09-14 03:51:48 +0300 (Mon, 14 Sep 2009) | 9 lines
Merged revisions 74787 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74787 | ezio.melotti | 2009-09-14 03:48:31 +0300 (Mon, 14 Sep 2009) | 1 line
#6904 - fix broken link
........
................
Matthias Klose [Sun, 13 Sep 2009 15:31:14 +0000 (15:31 +0000)]
Merged revisions 74775 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74775 | matthias.klose | 2009-09-13 17:18:53 +0200 (So, 13 Sep 2009) | 9 lines
Merged revisions 74773 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74773 | matthias.klose | 2009-09-13 17:09:24 +0200 (So, 13 Sep 2009) | 2 lines
Issue #6635: Fix profiler printing usage message.
........
................
Matthias Klose [Sun, 13 Sep 2009 15:29:48 +0000 (15:29 +0000)]
Add NEWS entry for 3.1.2 and move all entries after 3.1.1 to the new entry.
Mark Dickinson [Sun, 13 Sep 2009 12:08:21 +0000 (12:08 +0000)]
Merged revisions 74771 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74771 | mark.dickinson | 2009-09-13 13:06:08 +0100 (Sun, 13 Sep 2009) | 10 lines
Merged revisions 74769 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74769 | mark.dickinson | 2009-09-13 12:56:13 +0100 (Sun, 13 Sep 2009) | 3 lines
Fix potential signed-overflow bug in _PyLong_Format; also fix
a couple of whitespace issues.
........
................
Ezio Melotti [Sun, 13 Sep 2009 08:13:21 +0000 (08:13 +0000)]
Merged revisions 74764 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74764 | ezio.melotti | 2009-09-13 10:54:02 +0300 (Sun, 13 Sep 2009) | 1 line
fixed more examples that were using u"", print without () and unicode/str instead of str/bytes
........
Ezio Melotti [Sun, 13 Sep 2009 08:09:56 +0000 (08:09 +0000)]
Merged revisions 74763 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74763 | ezio.melotti | 2009-09-13 08:49:25 +0300 (Sun, 13 Sep 2009) | 1 line
small fixes in the examples and in the markup
........
Ezio Melotti [Sun, 13 Sep 2009 08:08:32 +0000 (08:08 +0000)]
Merged revisions 74762 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74762 | ezio.melotti | 2009-09-13 07:48:45 +0300 (Sun, 13 Sep 2009) | 1 line
more list()s on dictviews
........
Benjamin Peterson [Sun, 13 Sep 2009 02:29:37 +0000 (02:29 +0000)]
Merged revisions 74759-74760 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74759 | benjamin.peterson | 2009-09-12 21:22:00 -0500 (Sat, 12 Sep 2009) | 9 lines
Merged revisions 74757 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74757 | benjamin.peterson | 2009-09-12 20:59:31 -0500 (Sat, 12 Sep 2009) | 1 line
update urls
........
................
r74760 | benjamin.peterson | 2009-09-12 21:23:12 -0500 (Sat, 12 Sep 2009) | 1 line
py3k documentation has its own url
................
Ezio Melotti [Sat, 12 Sep 2009 19:50:05 +0000 (19:50 +0000)]
Merged revisions 74748 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74748 | ezio.melotti | 2009-09-12 04:52:05 +0300 (Sat, 12 Sep 2009) | 1 line
d.items() -> list(d.items()) in the examples
........
Lars Gustäbel [Sat, 12 Sep 2009 10:49:05 +0000 (10:49 +0000)]
Blocked revisions 74751 via svnmerge
................
r74751 | lars.gustaebel | 2009-09-12 12:44:00 +0200 (Sat, 12 Sep 2009) | 16 lines
Merged revisions 74750 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74750 | lars.gustaebel | 2009-09-12 12:28:15 +0200 (Sat, 12 Sep 2009) | 9 lines
Issue #6856: Add a filter keyword argument to TarFile.add().
The filter argument must be a function that takes a TarInfo
object argument, changes it and returns it again. If the
function returns None the TarInfo object will be excluded
from the archive.
The exclude argument is deprecated from now on, because it
does something similar but is not as flexible.
........
................
Benjamin Peterson [Fri, 11 Sep 2009 22:36:27 +0000 (22:36 +0000)]
Merged revisions 74745 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74745 | benjamin.peterson | 2009-09-11 17:24:02 -0500 (Fri, 11 Sep 2009) | 98 lines
Merged revisions 74277,74321,74323,74326,74355,74465,74467,74488,74492,74513,74531,74549,74553,74625,74632,74643-74644,74647,74652,74666,74671,74727,74739 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74277 | sean.reifschneider | 2009-08-01 18:54:55 -0500 (Sat, 01 Aug 2009) | 3 lines
- Issue #6624: yArg_ParseTuple with "s" format when parsing argument with
NUL: Bogus TypeError detail string.
........
r74321 | guilherme.polo | 2009-08-05 11:51:41 -0500 (Wed, 05 Aug 2009) | 1 line
Easier reference to find (at least while svn continues being used).
........
r74323 | guilherme.polo | 2009-08-05 18:48:26 -0500 (Wed, 05 Aug 2009) | 1 line
Typo.
........
r74326 | jesse.noller | 2009-08-05 21:05:56 -0500 (Wed, 05 Aug 2009) | 1 line
Fix issue 4660: spurious task_done errors in multiprocessing, remove doc note for from_address
........
r74355 | gregory.p.smith | 2009-08-12 12:02:37 -0500 (Wed, 12 Aug 2009) | 2 lines
comment typo fix
........
r74465 | vinay.sajip | 2009-08-15 18:23:12 -0500 (Sat, 15 Aug 2009) | 1 line
Added section on logging to one file from multiple processes.
........
r74467 | vinay.sajip | 2009-08-15 18:34:47 -0500 (Sat, 15 Aug 2009) | 1 line
Refined section on logging to one file from multiple processes.
........
r74488 | vinay.sajip | 2009-08-17 08:14:37 -0500 (Mon, 17 Aug 2009) | 1 line
Further refined section on logging to one file from multiple processes.
........
r74492 | r.david.murray | 2009-08-17 14:26:49 -0500 (Mon, 17 Aug 2009) | 2 lines
Issue 6685: 'toupper' -> 'upper' in cgi doc example explanation.
........
r74513 | skip.montanaro | 2009-08-18 09:37:52 -0500 (Tue, 18 Aug 2009) | 1 line
missing module ref (issue6723)
........
r74531 | vinay.sajip | 2009-08-20 17:04:32 -0500 (Thu, 20 Aug 2009) | 1 line
Added section on exceptions raised during logging.
........
r74549 | benjamin.peterson | 2009-08-24 12:42:36 -0500 (Mon, 24 Aug 2009) | 1 line
fix pdf building by teaching latex the right encoding package
........
r74553 | r.david.murray | 2009-08-26 20:04:59 -0500 (Wed, 26 Aug 2009) | 2 lines
Remove leftover text from end of sentence.
........
r74625 | benjamin.peterson | 2009-09-01 17:27:57 -0500 (Tue, 01 Sep 2009) | 1 line
remove the check that classmethod's argument is a callable
........
r74632 | georg.brandl | 2009-09-03 02:27:26 -0500 (Thu, 03 Sep 2009) | 1 line
#6828: fix wrongly highlighted blocks.
........
r74643 | georg.brandl | 2009-09-04 01:59:20 -0500 (Fri, 04 Sep 2009) | 2 lines
Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module.
........
r74644 | georg.brandl | 2009-09-04 02:55:14 -0500 (Fri, 04 Sep 2009) | 1 line
#5047: remove Monterey support from configure.
........
r74647 | georg.brandl | 2009-09-04 03:17:04 -0500 (Fri, 04 Sep 2009) | 2 lines
Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments as documented.
........
r74652 | georg.brandl | 2009-09-04 06:25:37 -0500 (Fri, 04 Sep 2009) | 1 line
#6756: add some info about the "acct" parameter.
........
r74666 | georg.brandl | 2009-09-05 04:04:09 -0500 (Sat, 05 Sep 2009) | 1 line
#6841: remove duplicated word.
........
r74671 | georg.brandl | 2009-09-05 11:47:17 -0500 (Sat, 05 Sep 2009) | 1 line
#6843: add link from filterwarnings to where the meaning of the arguments is covered.
........
r74727 | benjamin.peterson | 2009-09-08 18:04:22 -0500 (Tue, 08 Sep 2009) | 1 line
#6865 fix ref counting in initialization of pwd module
........
r74739 | georg.brandl | 2009-09-11 02:55:20 -0500 (Fri, 11 Sep 2009) | 1 line
Move function back to its section.
........
................
Benjamin Peterson [Fri, 11 Sep 2009 21:21:12 +0000 (21:21 +0000)]
Merged revisions 74741 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74741 | benjamin.peterson | 2009-09-11 16:17:13 -0500 (Fri, 11 Sep 2009) | 1 line
#6888 fix the alias command with no arguments
........
Tarek Ziadé [Wed, 9 Sep 2009 09:07:13 +0000 (09:07 +0000)]
Merged revisions 74730 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74730 | tarek.ziade | 2009-09-09 10:48:07 +0200 (Wed, 09 Sep 2009) | 9 lines
Merged revisions 74728 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74728 | tarek.ziade | 2009-09-09 10:14:20 +0200 (Wed, 09 Sep 2009) | 1 line
Issue #6163: Fixed HP-UX runtime library dir options in distutils.unixcompiler
........
................
Mark Dickinson [Tue, 8 Sep 2009 20:23:14 +0000 (20:23 +0000)]
Blocked revisions 74725 via svnmerge
................
r74725 | mark.dickinson | 2009-09-08 21:22:46 +0100 (Tue, 08 Sep 2009) | 10 lines
Merged revisions 74723 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74723 | mark.dickinson | 2009-09-08 21:20:19 +0100 (Tue, 08 Sep 2009) | 3 lines
Issue #6857: Fix Decimal formatting to be consistent with existing float
formatting: both are now right-aligned by default.
........
................
Mark Dickinson [Tue, 8 Sep 2009 19:23:44 +0000 (19:23 +0000)]
Merged revisions 74709 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k
................
r74709 | mark.dickinson | 2009-09-07 19:08:12 +0100 (Mon, 07 Sep 2009) | 9 lines
Merged revisions 74708 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74708 | mark.dickinson | 2009-09-07 19:04:58 +0100 (Mon, 07 Sep 2009) | 2 lines
#Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Decimal('nan')) to raise ValueError instead of either returning NaN or raising InvalidContext.
........
................
Mark Dickinson [Tue, 8 Sep 2009 19:23:07 +0000 (19:23 +0000)]
Unblocked revisions 74709 via svnmerge
................
r74709 | mark.dickinson | 2009-09-07 19:08:12 +0100 (Mon, 07 Sep 2009) | 9 lines
Merged revisions 74708 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74708 | mark.dickinson | 2009-09-07 19:04:58 +0100 (Mon, 07 Sep 2009) | 2 lines
#Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Decimal('nan')) to raise ValueError instead of either returning NaN or raising InvalidContext.
........
................
Ronald Oussoren [Tue, 8 Sep 2009 07:13:53 +0000 (07:13 +0000)]
Merged revisions 74713 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74713 | ronald.oussoren | 2009-09-08 09:12:42 +0200 (Tue, 08 Sep 2009) | 9 lines
Merged revisions 74701 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74701 | ronald.oussoren | 2009-09-07 08:12:00 +0200 (Mon, 07 Sep 2009) | 2 lines
Fix typo in configure.in
........
................
Mark Dickinson [Mon, 7 Sep 2009 18:09:16 +0000 (18:09 +0000)]
Blocked revisions 74709 via svnmerge
................
r74709 | mark.dickinson | 2009-09-07 19:08:12 +0100 (Mon, 07 Sep 2009) | 9 lines
Merged revisions 74708 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74708 | mark.dickinson | 2009-09-07 19:04:58 +0100 (Mon, 07 Sep 2009) | 2 lines
#Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Decimal('nan')) to raise ValueError instead of either returning NaN or raising InvalidContext.
........
................
Mark Dickinson [Mon, 7 Sep 2009 16:23:26 +0000 (16:23 +0000)]
Merged revisions 74706 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k
................
r74706 | mark.dickinson | 2009-09-07 17:21:56 +0100 (Mon, 07 Sep 2009) | 10 lines
Merged revisions 74704 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74704 | mark.dickinson | 2009-09-07 17:17:41 +0100 (Mon, 07 Sep 2009) | 3 lines
Issue #6850: Fix bug in Decimal._parse_format_specifier for formats
with no type specifier.
........
................
Mark Dickinson [Sun, 6 Sep 2009 21:26:46 +0000 (21:26 +0000)]
Merged revisions 74696 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74696 | mark.dickinson | 2009-09-06 22:24:55 +0100 (Sun, 06 Sep 2009) | 9 lines
Merged revisions 74693 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74693 | mark.dickinson | 2009-09-06 22:21:05 +0100 (Sun, 06 Sep 2009) | 2 lines
Issue #6848: Fix curses module build failure on OS X 10.6.
........
................
Mark Dickinson [Sun, 6 Sep 2009 20:54:47 +0000 (20:54 +0000)]
Merged revisions 74691 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74691 | mark.dickinson | 2009-09-06 21:53:58 +0100 (Sun, 06 Sep 2009) | 9 lines
Merged revisions 74689 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74689 | mark.dickinson | 2009-09-06 21:51:37 +0100 (Sun, 06 Sep 2009) | 1 line
Remove redundant assignment
........
................
Ronald Oussoren [Sun, 6 Sep 2009 14:01:46 +0000 (14:01 +0000)]
Merged revisions 74687 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74687 | ronald.oussoren | 2009-09-06 15:59:02 +0200 (Sun, 06 Sep 2009) | 3 lines
Fix for issue 6393: Python crashes on OSX when $LANG is set to some (but
not all) invalid values due to an invalid result from nl_langinfo
........
Ronald Oussoren [Sun, 6 Sep 2009 11:11:04 +0000 (11:11 +0000)]
Merged revisions 74682 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74682 | ronald.oussoren | 2009-09-06 13:01:15 +0200 (Sun, 06 Sep 2009) | 9 lines
Merged revisions 74672 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74672 | ronald.oussoren | 2009-09-06 12:00:26 +0200 (Sun, 06 Sep 2009) | 1 line
Fix build issues on OSX 10.6 (issue 6802)
........
................
Mark Dickinson [Sun, 6 Sep 2009 10:35:38 +0000 (10:35 +0000)]
Merged revisions 74679 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74679 | mark.dickinson | 2009-09-06 11:34:47 +0100 (Sun, 06 Sep 2009) | 9 lines
Merged revisions 74677 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74677 | mark.dickinson | 2009-09-06 11:32:21 +0100 (Sun, 06 Sep 2009) | 1 line
Issue #6847: s/bytes/bytearray/ in some bytearray error messages. Thanks Hagen Fürstenau.
........
................
Mark Dickinson [Sun, 6 Sep 2009 10:20:23 +0000 (10:20 +0000)]
Merged revisions 74675 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74675 | mark.dickinson | 2009-09-06 11:19:23 +0100 (Sun, 06 Sep 2009) | 10 lines
Merged revisions 74673 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74673 | mark.dickinson | 2009-09-06 11:03:31 +0100 (Sun, 06 Sep 2009) | 3 lines
Issue #6846: bytearray.pop was returning ints in the range [-128, 128)
instead of [0, 256). Thanks Hagen Fürstenau for the report and fix.
........
................
Mark Dickinson [Sat, 5 Sep 2009 10:37:04 +0000 (10:37 +0000)]
Blocked revisions 74669 via svnmerge
................
r74669 | mark.dickinson | 2009-09-05 11:36:23 +0100 (Sat, 05 Sep 2009) | 9 lines
Merged revisions 74667 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74667 | mark.dickinson | 2009-09-05 11:27:00 +0100 (Sat, 05 Sep 2009) | 2 lines
Add configure-time checks for gamma and error functions.
........
................
Thomas Heller [Fri, 4 Sep 2009 18:37:03 +0000 (18:37 +0000)]
Merged revisions 74664 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74664 | thomas.heller | 2009-09-04 20:24:41 +0200 (Fr, 04 Sep 2009) | 1 line
Issue 6239: ctypes.c_char_p return value must return bytes.
........
Georg Brandl [Fri, 4 Sep 2009 17:17:03 +0000 (17:17 +0000)]
Recorded merge of revisions 74658 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r74658 | chris.withers | 2009-09-04 19:04:16 +0200 (Fr, 04 Sep 2009) | 2 lines
Fixes issue #6838: use a list to accumulate the value instead of repeatedly concatenating strings.
........
Chris Withers [Fri, 4 Sep 2009 17:15:46 +0000 (17:15 +0000)]
Fixes issue #6838: use a list to accumulate the value instead of repeatedly concatenating strings.
Brett Cannon [Thu, 3 Sep 2009 21:32:00 +0000 (21:32 +0000)]
Merged revisions 74641 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74641 | brett.cannon | 2009-09-03 14:29:20 -0700 (Thu, 03 Sep 2009) | 14 lines
Merged revisions 74640 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74640 | brett.cannon | 2009-09-03 14:25:21 -0700 (Thu, 03 Sep 2009) | 7 lines
test_platform fails on OS X Snow Leopard because the UNIX command to get the
canonical version, sw_vers, leaves off trailing zeros in the version number
(e.g. 10.6 instead of 10.6.0). Test now compensates by tacking on extra zeros
for the test comparison.
Fixes issue #6806.
........
................
Georg Brandl [Tue, 1 Sep 2009 08:13:16 +0000 (08:13 +0000)]
Merged revisions 74613,74615,74619-74620,74622 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r74613 | georg.brandl | 2009-09-01 09:34:27 +0200 (Di, 01 Sep 2009) | 1 line
#6814: remove traces of xrange().
................
r74615 | georg.brandl | 2009-09-01 09:42:40 +0200 (Di, 01 Sep 2009) | 9 lines
Recorded merge of revisions 74614 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74614 | georg.brandl | 2009-09-01 09:40:54 +0200 (Di, 01 Sep 2009) | 1 line
#6813: better documentation for numberless string formats.
........
................
r74619 | georg.brandl | 2009-09-01 10:02:03 +0200 (Di, 01 Sep 2009) | 1 line
#6754: remove old struct member nb_inplace_divide.
................
r74620 | georg.brandl | 2009-09-01 10:03:26 +0200 (Di, 01 Sep 2009) | 1 line
#6732: fix return value of module init function in example.
................
r74622 | georg.brandl | 2009-09-01 10:11:14 +0200 (Di, 01 Sep 2009) | 73 lines
Merged revisions 74542,74544-74548,74550,74554-74555,74578,74588,74590,74603,74616-74618,74621 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74542 | georg.brandl | 2009-08-23 23:28:56 +0200 (So, 23 Aug 2009) | 1 line
Restore alphabetic order.
........
r74544 | georg.brandl | 2009-08-24 19:12:30 +0200 (Mo, 24 Aug 2009) | 1 line
#6775: fix python.org URLs in README.
........
r74545 | georg.brandl | 2009-08-24 19:14:29 +0200 (Mo, 24 Aug 2009) | 1 line
#6772: mention utf-8 as utf8 alias.
........
r74546 | georg.brandl | 2009-08-24 19:20:40 +0200 (Mo, 24 Aug 2009) | 1 line
#6725: spell "namespace" consistently.
........
r74547 | georg.brandl | 2009-08-24 19:22:05 +0200 (Mo, 24 Aug 2009) | 1 line
#6718: fix example.
........
r74548 | georg.brandl | 2009-08-24 19:24:27 +0200 (Mo, 24 Aug 2009) | 1 line
#6677: mention "deleting" as an alias for removing files.
........
r74550 | georg.brandl | 2009-08-24 19:48:40 +0200 (Mo, 24 Aug 2009) | 1 line
#6677: note that rmdir only removes empty directories.
........
r74554 | georg.brandl | 2009-08-27 20:59:02 +0200 (Do, 27 Aug 2009) | 1 line
Typo fix.
........
r74555 | georg.brandl | 2009-08-27 21:02:43 +0200 (Do, 27 Aug 2009) | 1 line
#6787: reference fix.
........
r74578 | tarek.ziade | 2009-08-29 15:33:21 +0200 (Sa, 29 Aug 2009) | 1 line
fixed #6801: symmetric_difference_update also accepts pipe
........
r74588 | georg.brandl | 2009-08-30 10:35:01 +0200 (So, 30 Aug 2009) | 1 line
#6803: fix old name.
........
r74590 | georg.brandl | 2009-08-30 13:51:53 +0200 (So, 30 Aug 2009) | 1 line
#6801: fix copy-paste oversight.
........
r74603 | georg.brandl | 2009-08-31 08:38:29 +0200 (Mo, 31 Aug 2009) | 1 line
other -> others where multiple arguments are accepted.
........
r74616 | georg.brandl | 2009-09-01 09:46:26 +0200 (Di, 01 Sep 2009) | 1 line
#6808: clarification.
........
r74617 | georg.brandl | 2009-09-01 09:53:37 +0200 (Di, 01 Sep 2009) | 1 line
#6765: hint that log(x, base) is not very sophisticated.
........
r74618 | georg.brandl | 2009-09-01 10:00:47 +0200 (Di, 01 Sep 2009) | 1 line
#6810: add a link to the section about frame objects instead of just a description where to find it.
........
r74621 | georg.brandl | 2009-09-01 10:06:03 +0200 (Di, 01 Sep 2009) | 1 line
#6638: fix wrong parameter name and markup a class.
........
................
Mark Dickinson [Mon, 31 Aug 2009 14:53:16 +0000 (14:53 +0000)]
Merged revisions 74605 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74605 | mark.dickinson | 2009-08-31 15:52:10 +0100 (Mon, 31 Aug 2009) | 9 lines
Merged revisions 74604 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74604 | mark.dickinson | 2009-08-31 15:46:07 +0100 (Mon, 31 Aug 2009) | 1 line
Issue #6297: Add autogenerated Misc/python.pc file to make distclean target. Thanks Jerry Chen.
........
................
Brett Cannon [Sun, 30 Aug 2009 04:29:47 +0000 (04:29 +0000)]
Merged revisions 74584 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74584 | brett.cannon | 2009-08-29 20:47:36 -0700 (Sat, 29 Aug 2009) | 3 lines
Have importlib raise ImportError if None is found in sys.modules. This matches
current import semantics.
........
Amaury Forgeot d'Arc [Sat, 29 Aug 2009 23:19:16 +0000 (23:19 +0000)]
Merged revisions 74582 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74582 | amaury.forgeotdarc | 2009-08-30 01:00:38 +0200 (dim., 30 août 2009) | 10 lines
Merged revisions 74581 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74581 | amaury.forgeotdarc | 2009-08-29 20:14:40 +0200 (sam., 29 août 2009) | 3 lines
#6750: TextIOWrapped could duplicate output when several threads write to it.
this affect text files opened with io.open(), and the print() function of py3k
........
................
Lars Gustäbel [Fri, 28 Aug 2009 20:01:38 +0000 (20:01 +0000)]
Blocked revisions 74573 via svnmerge
................
r74573 | lars.gustaebel | 2009-08-28 21:59:59 +0200 (Fri, 28 Aug 2009) | 13 lines
Merged revisions 74571 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74571 | lars.gustaebel | 2009-08-28 21:23:44 +0200 (Fri, 28 Aug 2009) | 7 lines
Issue #6054: Do not normalize stored pathnames.
No longer use tarfile.normpath() on pathnames. Store pathnames
unchanged, i.e. do not remove "./", "../" and "//" occurrences.
However, still convert absolute to relative paths.
........
................
Mark Dickinson [Fri, 28 Aug 2009 13:44:35 +0000 (13:44 +0000)]
Merged revisions 74566 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k
................
r74566 | mark.dickinson | 2009-08-28 14:39:53 +0100 (Fri, 28 Aug 2009) | 10 lines
Merged revisions 74564 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74564 | mark.dickinson | 2009-08-28 14:25:02 +0100 (Fri, 28 Aug 2009) | 3 lines
Issue #6794: Fix handling of NaNs in Decimal.compare_total and
Decimal.compare_total_mag.
........
................
Benjamin Peterson [Wed, 26 Aug 2009 07:38:00 +0000 (07:38 +0000)]
Merged revisions 74551 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r74551 | benjamin.peterson | 2009-08-26 09:35:45 +0200 (Wed, 26 Aug 2009) | 1 line
the old buffer object doesn't exist in Python 3 #6659
........
Tarek Ziadé [Fri, 21 Aug 2009 14:25:49 +0000 (14:25 +0000)]
Merged revisions 74535 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r74535 | tarek.ziade | 2009-08-21 16:22:45 +0200 (Fri, 21 Aug 2009) | 9 lines
Merged revisions 74533 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74533 | tarek.ziade | 2009-08-21 16:11:26 +0200 (Fri, 21 Aug 2009) | 1 line
Fixed #6556: Corrected doc on how Distutils looks for its user configuration file under Windows
........
................
Tarek Ziadé [Thu, 20 Aug 2009 21:29:20 +0000 (21:29 +0000)]
Blocked revisions 74529 via svnmerge
................
r74529 | tarek.ziade | 2009-08-20 23:28:05 +0200 (Thu, 20 Aug 2009) | 9 lines
Merged revisions 74526 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74526 | tarek.ziade | 2009-08-20 23:23:13 +0200 (Thu, 20 Aug 2009) | 1 line
#6693: New functions in site.py to get user/global site packages paths.
........
................