]>
granicus.if.org Git - python/log
Mark Dickinson [Thu, 1 Oct 2009 20:20:09 +0000 (20:20 +0000)]
More versionadded/versionchanged fixes
Mark Dickinson [Thu, 1 Oct 2009 20:11:11 +0000 (20:11 +0000)]
Remove outdated versionchanged entry
Antoine Pitrou [Thu, 1 Oct 2009 17:09:15 +0000 (17:09 +0000)]
Blocked revisions 75171 via svnmerge
........
r75171 | antoine.pitrou | 2009-10-01 19:08:03 +0200 (jeu., 01 oct. 2009) | 4 lines
Sync the 2.x `io` docs with py3k, with a small note as to the distinction
between bytes streams and text streams.
........
Antoine Pitrou [Thu, 1 Oct 2009 16:24:45 +0000 (16:24 +0000)]
Issue #7022: clarification of RawIOBase.read(), suggested by Pascal Chambon.
Mark Dickinson [Thu, 1 Oct 2009 16:13:29 +0000 (16:13 +0000)]
Fix versionadded for py3k math.gamma
Benjamin Peterson [Thu, 1 Oct 2009 00:57:32 +0000 (00:57 +0000)]
more stable url
Benjamin Peterson [Thu, 1 Oct 2009 00:10:13 +0000 (00:10 +0000)]
fix opensearch version
Mark Dickinson [Wed, 30 Sep 2009 17:47:54 +0000 (17:47 +0000)]
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:21:35 +0000 (19:21 +0000)]
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 18:44:53 +0000 (18:44 +0000)]
[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.
........
R. David Murray [Tue, 29 Sep 2009 14:01:08 +0000 (14:01 +0000)]
Merged revisions 75111 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75111 | r.david.murray | 2009-09-28 12:57:45 -0400 (Mon, 28 Sep 2009) | 5 lines
Prevent test_bad_address failure when a domain in the dns search
path implements a '*' default rule. Also update comment with
a more complete explanation of the difficulties inherent in
the test.
........
Raymond Hettinger [Tue, 29 Sep 2009 06:22:28 +0000 (06:22 +0000)]
Issue 7008: Better document str.title and show how to work around the apostrophe problem.
Philip Jenvey [Tue, 29 Sep 2009 04:57:18 +0000 (04:57 +0000)]
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:21:11 +0000 (19:21 +0000)]
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).
........
R. David Murray [Mon, 28 Sep 2009 18:55:36 +0000 (18:55 +0000)]
Blocked revisions 75115 via svnmerge
........
r75115 | r.david.murray | 2009-09-28 14:29:28 -0400 (Mon, 28 Sep 2009) | 2 lines
Applying patches backported from 3.1, by Gregor Lingl.
........
Mark Dickinson [Mon, 28 Sep 2009 17:54:52 +0000 (17:54 +0000)]
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).
........
Mark Dickinson [Mon, 28 Sep 2009 16:07:15 +0000 (16:07 +0000)]
Recorded merge of revisions 75054 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75054 | kristjan.jonsson | 2009-09-25 16:19:51 +0100 (Fri, 25 Sep 2009) | 2 lines
http://bugs.python.org/issue6971
Adding the SIO_KEEPALIVE_VALS command to socket.ioctl on windows
........
Mark Dickinson [Mon, 28 Sep 2009 16:00:09 +0000 (16:00 +0000)]
Recorded merge of revisions 75103-75104,75106 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75103 | kristjan.jonsson | 2009-09-28 14:08:48 +0100 (Mon, 28 Sep 2009) | 2 lines
http://bugs.python.org/issue6836
A memory block allocated with one API was being handed over to an object that used another API to release it.
........
r75104 | kristjan.jonsson | 2009-09-28 14:12:38 +0100 (Mon, 28 Sep 2009) | 2 lines
http://bugs.python.org/issue6836
The debug memory api now keeps track of which external API (PyMem_* or PyObject_*) was used to allocate each block and treats any API violation as an error. Added separate _PyMem_DebugMalloc functions for the Py_Mem API instead of having it use the _PyObject_DebugMalloc functions.
........
r75106 | kristjan.jonsson | 2009-09-28 16:56:25 +0100 (Mon, 28 Sep 2009) | 2 lines
http://bugs.python.org/issue6836
A missing 'const' wasn't detected by Visual Studio.
........
Kristján Valur Jónsson [Mon, 28 Sep 2009 15:57:53 +0000 (15:57 +0000)]
merging revision 75106 from trunk:
http://bugs.python.org/issue6836
A missing 'const' wasn't detected by Visual Studio.
Kristján Valur Jónsson [Mon, 28 Sep 2009 13:45:02 +0000 (13:45 +0000)]
http://bugs.python.org/issue6836
Merging revisions 75103,75104 from trunk to py3k
Kristján Valur Jónsson [Sun, 27 Sep 2009 21:10:38 +0000 (21:10 +0000)]
http://bugs.python.org/issue6971
Porting revision 75054 from trunk
Mark Dickinson [Sun, 27 Sep 2009 16:41:06 +0000 (16:41 +0000)]
Blocked revisions 75091 via svnmerge
........
r75091 | mark.dickinson | 2009-09-27 17:39:28 +0100 (Sun, 27 Sep 2009) | 1 line
Eliminate unnecessary get_wrapped_(u)long defines in struct module.
........
Benjamin Peterson [Sun, 27 Sep 2009 16:32:56 +0000 (16:32 +0000)]
use more correct callable replacement
Mark Dickinson [Sun, 27 Sep 2009 16:08:13 +0000 (16:08 +0000)]
Blocked revisions 75084 via svnmerge
........
r75084 | mark.dickinson | 2009-09-27 17:05:21 +0100 (Sun, 27 Sep 2009) | 3 lines
Issue #6713: Improve decimal int -> string conversions. Thanks Gawain
Bolton for the suggestion and original patches.
........
Benjamin Peterson [Sun, 27 Sep 2009 14:08:59 +0000 (14:08 +0000)]
star_expr now always has two nodes
Benjamin Peterson [Sun, 27 Sep 2009 02:43:28 +0000 (02:43 +0000)]
fix an ambiguity in the grammar from the implementation of extended unpacking
(one which was strangely "resolved" by pgen)
This also kills the unused testlist1 rule and fixes parse tree validation of
extended unpacking.
Georg Brandl [Sat, 26 Sep 2009 20:59:11 +0000 (20:59 +0000)]
fix default value
Georg Brandl [Sat, 26 Sep 2009 20:52:12 +0000 (20:52 +0000)]
use new style optional args
Ezio Melotti [Sat, 26 Sep 2009 12:33:22 +0000 (12:33 +0000)]
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:19:30 +0000 (12:19 +0000)]
string.capwords is still around, adding back the tests
R. David Murray [Sat, 26 Sep 2009 02:42:26 +0000 (02:42 +0000)]
Andrew just committed a patch for curses, so since he's been the
maintainer he's on the hook for it in maintainers unless he says
otherwise.
Ezio Melotti [Fri, 25 Sep 2009 21:35:24 +0000 (21:35 +0000)]
fix print statement
Benjamin Peterson [Fri, 25 Sep 2009 20:56:52 +0000 (20:56 +0000)]
correct the fixpath.py script to work in Python 3 #6999
Benjamin Peterson [Fri, 25 Sep 2009 20:34:04 +0000 (20:34 +0000)]
fix print statement
Ezio Melotti [Fri, 25 Sep 2009 20:14:02 +0000 (20:14 +0000)]
#6998: fix missing () on a print
Ezio Melotti [Fri, 25 Sep 2009 16:12:33 +0000 (16:12 +0000)]
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:04:23 +0000 (20:04 +0000)]
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:24:44 +0000 (19:24 +0000)]
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:31:17 +0000 (18:31 +0000)]
Silence compiler warning
Ezio Melotti [Wed, 23 Sep 2009 21:42:25 +0000 (21:42 +0000)]
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:52:03 +0000 (21:52 +0000)]
Add Robert Lehmann for issue #
1766304 patch
Mark Dickinson [Tue, 22 Sep 2009 21:47:24 +0000 (21:47 +0000)]
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:08:09 +0000 (20:08 +0000)]
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.
........
Brett Cannon [Tue, 22 Sep 2009 19:15:35 +0000 (19:15 +0000)]
Merged revisions 75020 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75020 | brett.cannon | 2009-09-22 12:13:27 -0700 (Tue, 22 Sep 2009) | 1 line
Fix whitespace.
........
Georg Brandl [Tue, 22 Sep 2009 13:53:14 +0000 (13:53 +0000)]
#6969: make it explicit that configparser writes/reads text files, and fix the example.
Tarek Ziadé [Tue, 22 Sep 2009 10:08:13 +0000 (10:08 +0000)]
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
........
Brett Cannon [Tue, 22 Sep 2009 00:32:59 +0000 (00:32 +0000)]
Merged revisions 75011 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75011 | brett.cannon | 2009-09-21 17:29:48 -0700 (Mon, 21 Sep 2009) | 10 lines
When range checking was added to time.strftime() a check was placed on tm_isdst
to make sure it fell within [-1, 1] just in case someone implementing
strftime() in libc was stupid enough to assume this. Turns out, though, some
OSs (e.g. zOS) are stupid enough to use values outside of this range for time
structs created by the system itself. So instead of throwing a ValueError,
tm_isdst is now normalized before being passed to strftime().
Fixes issue #6823. Thanks Robert Shapiro for diagnosing the problem and
contributing an initial patch.
........
Antoine Pitrou [Mon, 21 Sep 2009 21:37:02 +0000 (21:37 +0000)]
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:18:27 +0000 (16:18 +0000)]
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.
........
Tarek Ziadé [Mon, 21 Sep 2009 13:55:19 +0000 (13:55 +0000)]
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:43:09 +0000 (13:43 +0000)]
Merged revisions 74992 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74992 | tarek.ziade | 2009-09-21 15:23:35 +0200 (Mon, 21 Sep 2009) | 1 line
improving distutils coverage
........
Tarek Ziadé [Mon, 21 Sep 2009 13:01:54 +0000 (13:01 +0000)]
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 [Sun, 20 Sep 2009 20:56:56 +0000 (20:56 +0000)]
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:09:26 +0000 (20:09 +0000)]
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:57:50 +0000 (18:57 +0000)]
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 14:53:22 +0000 (14:53 +0000)]
Merged revisions 74970 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74970 | ronald.oussoren | 2009-09-20 16:18:15 +0200 (Sun, 20 Sep 2009) | 7 lines
Issue 6877: this patch makes it possible to link the readline extension
to the libedit emulation of the readline API on OSX 10.5 or later.
This also adds a minimal testsuite for readline to check that the
history manipuation functions have the same interface with both
C libraries.
........
Ronald Oussoren [Sun, 20 Sep 2009 11:22:29 +0000 (11:22 +0000)]
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:19:57 +0000 (07:19 +0000)]
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 18:40:08 +0000 (18:40 +0000)]
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:12:45 +0000 (10:12 +0000)]
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.
........
Georg Brandl [Sat, 19 Sep 2009 07:39:05 +0000 (07:39 +0000)]
I would like to maintain the token module!
Benjamin Peterson [Fri, 18 Sep 2009 22:50:55 +0000 (22:50 +0000)]
add myself for symtable
Benjamin Peterson [Fri, 18 Sep 2009 22:45:59 +0000 (22:45 +0000)]
add a new category for myself
Benjamin Peterson [Fri, 18 Sep 2009 21:57:33 +0000 (21:57 +0000)]
adjust signature
Benjamin Peterson [Fri, 18 Sep 2009 21:51:43 +0000 (21:51 +0000)]
Blocked revisions 74936-74937 via svnmerge
........
r74936 | benjamin.peterson | 2009-09-18 16:46:21 -0500 (Fri, 18 Sep 2009) | 1 line
backport keyword argument support for bytearray.decode
........
r74937 | benjamin.peterson | 2009-09-18 16:47:27 -0500 (Fri, 18 Sep 2009) | 1 line
typo
........
Benjamin Peterson [Fri, 18 Sep 2009 21:49:06 +0000 (21:49 +0000)]
kill merged line
Benjamin Peterson [Fri, 18 Sep 2009 21:42:35 +0000 (21:42 +0000)]
Merged revisions 74929 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74929 | benjamin.peterson | 2009-09-18 16:14:55 -0500 (Fri, 18 Sep 2009) | 1 line
add keyword arguments support to str/unicode encode and decode #6300
........
R. David Murray [Fri, 18 Sep 2009 21:40:30 +0000 (21:40 +0000)]
More descriptive/generic name for the svn/hg entry (version control)
R. David Murray [Fri, 18 Sep 2009 21:32:16 +0000 (21:32 +0000)]
Remove non-committer mistakenly added.
R. David Murray [Fri, 18 Sep 2009 21:25:36 +0000 (21:25 +0000)]
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.
Mark Dickinson [Fri, 18 Sep 2009 21:04:19 +0000 (21:04 +0000)]
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:08:39 +0000 (20:08 +0000)]
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:05:13 +0000 (19:05 +0000)]
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:36:57 +0000 (18:36 +0000)]
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:08 +0000 (14:53 +0000)]
Issue #6713 (continued): remove unused arbitrary-base conversion code
from _PyLong_Format.
Eric Smith [Fri, 18 Sep 2009 13:23:13 +0000 (13:23 +0000)]
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.
Antoine Pitrou [Fri, 18 Sep 2009 13:15:23 +0000 (13:15 +0000)]
Add myself in a couple of places
Ezio Melotti [Fri, 18 Sep 2009 09:58:43 +0000 (09:58 +0000)]
Add myself in interest areas and mark effbot as inactive in winsound
Georg Brandl [Fri, 18 Sep 2009 09:06:37 +0000 (09:06 +0000)]
Add myself in interest areas.
Georg Brandl [Fri, 18 Sep 2009 07:27:51 +0000 (07:27 +0000)]
#6935: update version.
Brett Cannon [Fri, 18 Sep 2009 01:03:35 +0000 (01:03 +0000)]
Add myself to a couple places as maintainer.
Alexandre Vassalotti [Fri, 18 Sep 2009 00:59:05 +0000 (00:59 +0000)]
Added myself to my areas of interest.
R. David Murray [Thu, 17 Sep 2009 23:43:20 +0000 (23:43 +0000)]
Benajmin is also compiler-knowledgeable.
R. David Murray [Thu, 17 Sep 2009 23:23:56 +0000 (23:23 +0000)]
Add a couple interest areas for Nick per his request.
Georg Brandl [Thu, 17 Sep 2009 22:18:01 +0000 (22:18 +0000)]
Some more maintainers.
Georg Brandl [Thu, 17 Sep 2009 22:11:49 +0000 (22:11 +0000)]
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.
........
R. David Murray [Thu, 17 Sep 2009 22:10:48 +0000 (22:10 +0000)]
Maintainer additions from MAL.
Mark Dickinson [Thu, 17 Sep 2009 20:20:01 +0000 (20:20 +0000)]
Add decimal maintainers
Mark Dickinson [Thu, 17 Sep 2009 19:39:12 +0000 (19:39 +0000)]
Revert accidental changes to Objects/longobject.c
Mark Dickinson [Thu, 17 Sep 2009 19:37:28 +0000 (19:37 +0000)]
Add some more module maintainers.
Eric Smith [Thu, 17 Sep 2009 19:22:30 +0000 (19:22 +0000)]
Typo.
R. David Murray [Thu, 17 Sep 2009 19:12:49 +0000 (19:12 +0000)]
Check in first draft of maintainers.rst.
Antoine Pitrou [Thu, 17 Sep 2009 17:18:01 +0000 (17:18 +0000)]
Issue #6929: fix a couple of statements and clarify a lot of things in the IO docs.
Georg Brandl [Thu, 17 Sep 2009 11:50:17 +0000 (11:50 +0000)]
Blocked revisions 74873 via svnmerge
........
r74873 | georg.brandl | 2009-09-17 13:48:31 +0200 (Do, 17 Sep 2009) | 1 line
#6844 followup: the warning when setting Exception.message was removed, do not test for it.
........
Georg Brandl [Thu, 17 Sep 2009 11:41:24 +0000 (11:41 +0000)]
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".
........
Brett Cannon [Thu, 17 Sep 2009 03:39:33 +0000 (03:39 +0000)]
Merged revisions 74862 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74862 | brett.cannon | 2009-09-16 20:24:45 -0700 (Wed, 16 Sep 2009) | 1 line
Note in the intro to Extending... that ctypes can be a simpler, more portable solution than custom C code.
........
Mark Dickinson [Thu, 17 Sep 2009 00:17:48 +0000 (00:17 +0000)]
Bypass long_repr and _PyLong_Format for str(n), repr(n)
Mark Dickinson [Thu, 17 Sep 2009 00:06:41 +0000 (00:06 +0000)]
typo: Documenation -> Documentation
Mark Dickinson [Wed, 16 Sep 2009 22:14:54 +0000 (22:14 +0000)]
Recorded merge of revisions 74853 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74853 | mark.dickinson | 2009-09-16 23:10:56 +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. (Backport of r74851 from py3k.)
........
Mark Dickinson [Wed, 16 Sep 2009 21:23:34 +0000 (21:23 +0000)]
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.