summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 75039 via svnmerge fromEzio Melotti2009-09-231-8/+9
| | | | | | | | | | 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 ........
* Add Robert Lehmann for issue #1766304 patchMark Dickinson2009-09-221-0/+1
|
* Issue #1766304: Optimize membership testing for ranges: 'n in range(...)'Mark Dickinson2009-09-224-0/+113
| | | | | does an O(1) check, if n is an integer. Non-integers aren't affected. Thanks Robert Lehmann.
* Merged revisions 75024 via svnmerge fromBrett Cannon2009-09-221-1/+1
| | | | | | | | | | 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. ........
* Merged revisions 75020 via svnmerge fromBrett Cannon2009-09-221-42/+43
| | | | | | | | | | 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. ........
* #6969: make it explicit that configparser writes/reads text files, and fix ↵Georg Brandl2009-09-221-6/+9
| | | | the example.
* Merged revisions 74812 via svnmerge fromTarek Ziadé2009-09-221-1/+21
| | | | | | | | | | | 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 ........
* Merged revisions 75011 via svnmerge fromBrett Cannon2009-09-223-10/+8
| | | | | | | | | | | | | | | | | | 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. ........
* Merged revisions 75007 via svnmerge fromAntoine Pitrou2009-09-213-7/+10
| | | | | | | | | | | | | | 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. ........
* Merged revisions 75003 via svnmerge fromMark Dickinson2009-09-211-2/+3
| | | | | | | | | | 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. ........
* Merged revisions 74994,74997 via svnmerge fromTarek Ziadé2009-09-215-1/+16
| | | | | | | | | | | | | | 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) ........
* Merged revisions 74992 via svnmerge fromTarek Ziadé2009-09-211-0/+22
| | | | | | | | | | 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 ........
* Merged revisions 74988 via svnmerge fromTarek Ziadé2009-09-217-6/+97
| | | | | | | | | | 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) ........
* Merged revisions 74984 via svnmerge fromDoug Hellmann2009-09-201-1/+1
| | | | | | | | | | 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. ........
* Merged revisions 74978 via svnmerge fromRonald Oussoren2009-09-202-5881/+5195
| | | | | | | | | | 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 ........
* Merged revisions 74972 via svnmerge fromRonald Oussoren2009-09-208-716/+713
| | | | | | | | | | | | | 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 ........
* Merged revisions 74970 via svnmerge fromRonald Oussoren2009-09-205-10/+133
| | | | | | | | | | | | | | | 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. ........
* Merged revisions 74966 via svnmerge fromRonald Oussoren2009-09-201-6/+5
| | | | | | | | | | 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 ........
* Merged revisions 74958 via svnmerge fromEzio Melotti2009-09-201-10/+19
| | | | | | | | | | 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 ........
* Add everyone who we know has been a release managerR. David Murray2009-09-191-1/+2
| | | | as a resource for the 'release management' topic.
* Merged revisions 74948 via svnmerge fromThomas Heller2009-09-191-11/+0
| | | | | | | | | | 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. ........
* I would like to maintain the token module!Georg Brandl2009-09-191-2/+2
|
* add myself for symtableBenjamin Peterson2009-09-181-1/+1
|
* add a new category for myselfBenjamin Peterson2009-09-181-0/+1
|
* adjust signatureBenjamin Peterson2009-09-181-3/+3
|
* Blocked revisions 74936-74937 via svnmergeBenjamin Peterson2009-09-180-0/+0
| | | | | | | | | | | | ........ 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 ........
* kill merged lineBenjamin Peterson2009-09-181-1/+0
|
* Merged revisions 74929 via svnmerge fromBenjamin Peterson2009-09-187-13/+29
| | | | | | | | | | 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 ........
* More descriptive/generic name for the svn/hg entry (version control)R. David Murray2009-09-181-1/+1
|
* Remove non-committer mistakenly added.R. David Murray2009-09-181-1/+1
|
* Add some names gleaned from the "Tracker Archeology" threadR. David Murray2009-09-181-6/+7
| | | | | | on python-dev from back in February. Also consolidate the autoconf and makefiles topics into one, and add tracker and svn/hg topics.
* Merged revisions 74925 via svnmerge fromMark Dickinson2009-09-181-31/+34
| | | | | | | | | | 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. ........
* Merged revisions 74921 via svnmerge fromThomas Heller2009-09-184-3/+10
| | | | | | | | | | | 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. ........
* Merged revisions 74917 via svnmerge fromThomas Heller2009-09-183-58/+95
| | | | | | | | | | | | | 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.
* Merged revisions 74913 via svnmerge fromMark Dickinson2009-09-181-0/+1
| | | | | | | | | | 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. ........
* Issue #6713 (continued): remove unused arbitrary-base conversion codeMark Dickinson2009-09-181-99/+34
| | | | from _PyLong_Format.
* Issue #6882: Import uuid creates zombies processes. I used a slightly ↵Eric Smith2009-09-182-2/+8
| | | | different patch than the one attached to the issue, to be consistent with the style in the rest of the module.
* Add myself in a couple of placesAntoine Pitrou2009-09-181-5/+6
|
* Add myself in interest areas and mark effbot as inactive in winsoundEzio Melotti2009-09-181-2/+2
|
* Add myself in interest areas.Georg Brandl2009-09-181-2/+2
|
* #6935: update version.Georg Brandl2009-09-181-4/+4
|
* Add myself to a couple places as maintainer.Brett Cannon2009-09-181-2/+2
|
* Added myself to my areas of interest.Alexandre Vassalotti2009-09-181-4/+4
|
* Benajmin is also compiler-knowledgeable.R. David Murray2009-09-171-1/+1
|
* Add a couple interest areas for Nick per his request.R. David Murray2009-09-171-2/+2
|
* Some more maintainers.Georg Brandl2009-09-171-7/+7
|
* Merged revisions 74868,74877-74878 via svnmerge fromGeorg Brandl2009-09-171-471/+519
| | | | | | | | | | | | | | | | | | 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. ........
* Maintainer additions from MAL.R. David Murray2009-09-171-20/+20
|
* Add decimal maintainersMark Dickinson2009-09-171-1/+1
|
* Revert accidental changes to Objects/longobject.cMark Dickinson2009-09-171-44/+104
|