R. David Murray
ab170681f6
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.
2009-09-26 02:42:26 +00:00
Ezio Melotti
af30d2eeaa
fix print statement
2009-09-25 21:35:24 +00:00
Benjamin Peterson
9abfc457e0
correct the fixpath.py script to work in Python 3 #6999
2009-09-25 20:56:52 +00:00
Benjamin Peterson
8fb00bef27
fix print statement
2009-09-25 20:34:04 +00:00
Ezio Melotti
b297e714e2
#6998 : fix missing () on a print
2009-09-25 20:14:02 +00:00
Ezio Melotti
ed61093277
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
........
2009-09-25 16:12:33 +00:00
Mark Dickinson
418f81d9b6
Issue #1766304 : The range.__contains__ optimization should only be
...
applied to ints, not to instances of subclasses of int.
2009-09-24 20:04:23 +00:00
Mark Dickinson
067b38eed4
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.
........
2009-09-24 19:24:44 +00:00
Mark Dickinson
1f7e18cd74
Silence compiler warning
2009-09-24 18:31:17 +00:00
Ezio Melotti
ec5c8b8e9b
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
........
2009-09-23 21:42:25 +00:00
Mark Dickinson
c6f23642ee
Add Robert Lehmann for issue #1766304 patch
2009-09-22 21:52:03 +00:00
Mark Dickinson
3e124ae739
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.
2009-09-22 21:47:24 +00:00
Brett Cannon
2df8113622
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.
........
2009-09-22 20:08:09 +00:00
Brett Cannon
ec79b1ca21
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.
........
2009-09-22 19:15:35 +00:00
Georg Brandl
73753d354b
#6969 : make it explicit that configparser writes/reads text files, and fix the example.
2009-09-22 13:53:14 +00:00
Tarek Ziadé
8355e7c4a5
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
........
2009-09-22 10:08:13 +00:00
Brett Cannon
7d12c559ce
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.
........
2009-09-22 00:32:59 +00:00
Antoine Pitrou
ca767bd2db
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.
........
2009-09-21 21:37:02 +00:00
Mark Dickinson
741984dc17
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.
........
2009-09-21 16:18:27 +00:00
Tarek Ziadé
31d4607db1
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 )
........
2009-09-21 13:55:19 +00:00
Tarek Ziadé
e7631191b0
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
........
2009-09-21 13:43:09 +00:00
Tarek Ziadé
03d5d08798
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)
........
2009-09-21 13:01:54 +00:00
Doug Hellmann
eb097fca52
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.
........
2009-09-20 20:56:56 +00:00
Ronald Oussoren
74f29b4a8b
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
........
2009-09-20 20:09:26 +00:00
Ronald Oussoren
6ce931fabe
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
........
2009-09-20 18:57:50 +00:00
Ronald Oussoren
2efd924754
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.
........
2009-09-20 14:53:22 +00:00
Ronald Oussoren
f172f31e4f
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
........
2009-09-20 11:22:29 +00:00
Ezio Melotti
bb43a05807
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
........
2009-09-20 07:19:57 +00:00
R. David Murray
2b9b9ff77b
Add everyone who we know has been a release manager
...
as a resource for the 'release management' topic.
2009-09-19 18:40:08 +00:00
Thomas Heller
04ebea3b91
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.
........
2009-09-19 10:12:45 +00:00
Georg Brandl
74600984c2
I would like to maintain the token module!
2009-09-19 07:39:05 +00:00
Benjamin Peterson
83963ddd5f
add myself for symtable
2009-09-18 22:50:55 +00:00
Benjamin Peterson
859e0b17be
add a new category for myself
2009-09-18 22:45:59 +00:00
Benjamin Peterson
e8ee03dbc6
adjust signature
2009-09-18 21:57:33 +00:00
Benjamin Peterson
86089f0b0c
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
........
2009-09-18 21:51:43 +00:00
Benjamin Peterson
f38a69f979
kill merged line
2009-09-18 21:49:06 +00:00
Benjamin Peterson
308d637c94
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
........
2009-09-18 21:42:35 +00:00
R. David Murray
7a4e5866f7
More descriptive/generic name for the svn/hg entry (version control)
2009-09-18 21:40:30 +00:00
R. David Murray
503087dd08
Remove non-committer mistakenly added.
2009-09-18 21:32:16 +00:00
R. David Murray
319904ed29
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.
2009-09-18 21:25:36 +00:00
Mark Dickinson
63566239f7
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.
........
2009-09-18 21:04:19 +00:00
Thomas Heller
69b639f946
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.
........
2009-09-18 20:08:39 +00:00
Thomas Heller
d7cb1b9119
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.
2009-09-18 19:05:13 +00:00
Mark Dickinson
a91ded2842
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.
........
2009-09-18 18:36:57 +00:00
Mark Dickinson
cd06812971
Issue #6713 (continued): remove unused arbitrary-base conversion code
...
from _PyLong_Format.
2009-09-18 14:53:08 +00:00
Eric Smith
81fd804034
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.
2009-09-18 13:23:13 +00:00
Antoine Pitrou
16df8c93ce
Add myself in a couple of places
2009-09-18 13:15:23 +00:00
Ezio Melotti
fdaafdb06a
Add myself in interest areas and mark effbot as inactive in winsound
2009-09-18 09:58:43 +00:00
Georg Brandl
639cf64b00
Add myself in interest areas.
2009-09-18 09:06:37 +00:00
Georg Brandl
a17487b321
#6935 : update version.
2009-09-18 07:27:51 +00:00