summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 73825-73826 via svnmerge fromGregory P. Smith2009-07-041-0/+3
| | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73825 | gregory.p.smith | 2009-07-03 18:49:29 -0700 (Fri, 03 Jul 2009) | 9 lines Use select.poll() in subprocess, when available, rather than select() so that it does not fail when file descriptors are large. Fixes issue3392. Patch largely contributed by Frank Chu (fpmc) with some improvements by me. See http://bugs.python.org/issue3392. ........ r73826 | gregory.p.smith | 2009-07-03 18:55:11 -0700 (Fri, 03 Jul 2009) | 2 lines news entry for r73825 ........ Candidate for backporting to release31-maint as it is a bug fix and changes no public API.
* Merged revisions 73827 via svnmerge fromTarek Ziadé2009-07-041-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73827 | tarek.ziade | 2009-07-04 04:02:41 +0200 (Sat, 04 Jul 2009) | 1 line Fixed #6413: fixed log level in distutils.dist.announce ........
* remove duplicate declartions #6405Benjamin Peterson2009-07-031-0/+2
|
* Merged revisions 73790 via svnmerge fromTarek Ziadé2009-07-031-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73790 | tarek.ziade | 2009-07-03 10:22:56 +0200 (Fri, 03 Jul 2009) | 1 line Fixed #6403 : package path usage for build_ext ........
* #4601: 'make install' did not set the permissions on library directories,Amaury Forgeot d'Arc2009-07-021-0/+3
| | | | | | | only root could start IDLE for example. Beware that os.path.walk does not translate as is to os.walk! the former uses a callback to call on each dir, the latter is a generator...
* the old CO_FUTURE flags can't be commented outBenjamin Peterson2009-07-021-0/+5
|
* Issue #6369: Fix an RLE decompression bug in the binhex module.Antoine Pitrou2009-07-011-0/+2
|
* remove PyCObjectBenjamin Peterson2009-07-011-0/+2
|
* Fix exception name in NEWS, spotted by Neal NorwitzAmaury Forgeot d'Arc2009-07-011-1/+1
|
* Merged revisions 73701 via svnmerge fromMark Dickinson2009-06-301-0/+4
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73701 | mark.dickinson | 2009-06-30 16:32:30 +0100 (Tue, 30 Jun 2009) | 3 lines Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a build failure on HP-UX 11.00. ........
* #6373: SystemError in str.encode('latin1', 'surrogateescape')Amaury Forgeot d'Arc2009-06-291-0/+4
| | | | | | | | if the string contains unpaired surrogates. (In debug build, crash in assert()) This can happen with normal processing, if python starts with utf-8, then calls sys.setfilesystemencoding('latin-1')
* Merged revisions 73688 via svnmerge fromTarek Ziadé2009-06-291-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73688 | tarek.ziade | 2009-06-29 18:13:39 +0200 (Mon, 29 Jun 2009) | 1 line Fixed 6365: wrong inplace location for build_ext if the extension had dots ........
* Merged revisions 73677,73681 via svnmerge fromHirokazu Yamamoto2009-06-291-0/+2
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73677 | hirokazu.yamamoto | 2009-06-29 22:25:16 +0900 | 2 lines Issue #6344: Fixed a crash of mmap.read() when passed a negative argument. Reviewed by Amaury Forgeot d'Arc. ........ r73681 | hirokazu.yamamoto | 2009-06-29 23:29:31 +0900 | 1 line Fixed NEWS. ........
* Merged revisions 73072 via svnmerge fromAntoine Pitrou2009-06-291-0/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73072 | antoine.pitrou | 2009-05-31 16:20:14 +0200 (dim., 31 mai 2009) | 4 lines Issue #6152: New option '-j'/'--multiprocess' for regrtest allows running regression tests in parallel, shortening the total runtime. ........
* remove string.maketransBenjamin Peterson2009-06-281-0/+2
|
* Merged revisions 73490 via svnmerge fromTarek Ziadé2009-06-281-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73490 | tarek.ziade | 2009-06-20 15:57:20 +0200 (Sat, 20 Jun 2009) | 1 line Fixed #6164 AIX specific linker argument in Distutils unixcompiler ........
* Merged revisions 73436 via svnmerge fromTarek Ziadé2009-06-281-0/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73436 | tarek.ziade | 2009-06-16 01:30:13 +0200 (Tue, 16 Jun 2009) | 1 line Issue #6286: distutils upload command now uses urllib2 ........
* Merged revisions ↵Benjamin Peterson2009-06-281-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without. There's still a batch of non-prototype warnings in Xlib.h that I don't know how to fix. ........ r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line don't mask encoding errors when decoding a string #6289 ........ r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line Issue #6314: logging.basicConfig() performs extra checks on the "level" argument. ........ r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines #4490 Fix sample code run by "python -m xml.sax.xmlreader" ........ r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines Fix issue 5230 by having pydoc's safeimport check to see if the import error was thrown from itself in order to decide if the module can't be found. Thanks to Lucas Prado Melo for collaborating on the fix and tests. ........ r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines #2016 Fix a crash in function call when the **kwargs dictionary is mutated during the function call setup. This even gives a slight speedup, probably because tuple allocation is faster than PyMem_NEW. ........ r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line document is_declared_global() ........ r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line link to extensive generator docs in the reference manual ........ r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line stmt and setup can contain multiple statements, see #5896 ........ r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line Fixed a wrong apostrophe ........ r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line Remove stray pychecker directive. ........
* Merged revisions 73603 via svnmerge fromHirokazu Yamamoto2009-06-281-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73603 | hirokazu.yamamoto | 2009-06-28 19:23:00 +0900 | 1 line Issue #4856: Remove checks for win NT. ........
* Merged revisions 73598 via svnmerge fromMartin v. Löwis2009-06-281-0/+6
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73598 | martin.v.loewis | 2009-06-28 11:32:39 +0200 (So, 28 Jun 2009) | 3 lines Issue 5390: Add uninstall icon independent of whether file extensions are installed. ........
* update install dir versionBenjamin Peterson2009-06-271-1/+1
|
* bump to 3.2a0Benjamin Peterson2009-06-272-2/+14
|
* bump version to 3.1 final :)Benjamin Peterson2009-06-261-1/+1
|
* Merged revisions 73565 via svnmerge fromGregory P. Smith2009-06-261-0/+3
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73565 | gregory.p.smith | 2009-06-26 00:50:21 -0700 (Fri, 26 Jun 2009) | 2 lines Fixes the last problem mentioned in issue1202. ........ Issue #1202: zipfile module would cause a struct.error when attempting to store files with a CRC32 > 2**31-1. (on trunk this was merely a warning, in the py3k branch this caused an exception so I'm treating this as a release blocker and merging it now)
* Misc/NEWS entry for r73547Mark Dickinson2009-06-241-0/+3
|
* Merged revisions 73544 via svnmerge fromGeorg Brandl2009-06-245-7/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73544 | georg.brandl | 2009-06-24 06:41:19 +0000 (Mi, 24 Jun 2009) | 1 line #6332: fix word dupes throughout the source. ........
* Add procedural note.Raymond Hettinger2009-06-231-0/+3
|
* Issue 6329: Fix iteration for memoryviews.Raymond Hettinger2009-06-231-0/+3
|
* - Issue #5590: Remove unused global variable in pyexpat extension.Matthias Klose2009-06-221-0/+5
|
* Issue #6314: logging.basicConfig() performs extra checks on the "level" ↵Vinay Sajip2009-06-211-1/+4
| | | | argument.
* Merged revisions 73495 via svnmerge fromGuilherme Polo2009-06-211-0/+5
| | | | | | | | | | | | svn+ssh://pythondev/python/trunk ........ r73495 | guilherme.polo | 2009-06-21 14:22:50 -0300 (Sun, 21 Jun 2009) | 4 lines Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl to Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of test_ttkguionly. ........
* Issue #6274. Fixed a potential FD leak in subprocess.py.Facundo Batista2009-06-191-0/+2
|
* Merged revisions 73441 via svnmerge fromTarek Ziadé2009-06-161-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73441 | tarek.ziade | 2009-06-16 09:29:52 +0200 (Tue, 16 Jun 2009) | 1 line Fixed #6287: documentation for the license field in distutils ........
* just throw a normal AttributeError for no buffer attributeBenjamin Peterson2009-06-141-0/+3
|
* Merged revisions 73425 via svnmerge fromHirokazu Yamamoto2009-06-141-0/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73425 | hirokazu.yamamoto | 2009-06-14 12:53:55 +0900 | 2 lines Issue #6271: mmap tried to close invalid file handle (-1) when annonymous. (On Unix) Patch by STINNER Victor. ........
* post release version bumpsBenjamin Peterson2009-06-131-0/+12
|
* bump version to 3.1rc2Benjamin Peterson2009-06-132-2/+2
|
* Fix SystemError and a wasps nest of ref counting issues.Raymond Hettinger2009-06-121-0/+2
|
* Merged revisions 73390 via svnmerge fromMartin v. Löwis2009-06-121-0/+2
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73390 | martin.v.loewis | 2009-06-12 19:28:31 +0200 (Fr, 12 Jun 2009) | 3 lines Support AMD64 in msilib. Set Win64 on reglocator. Fixes #6258. ........
* Issue #6195: fix doctest to no longer try to read 'source' data fromR. David Murray2009-06-121-0/+3
| | | | binary files.
* Issue #5262: Fixed bug in next roll over time computation in ↵Vinay Sajip2009-06-111-5/+8
| | | | TimedRotatingFileHandler.
* Merged revisions 73348 via svnmerge fromTarek Ziadé2009-06-111-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73348 | tarek.ziade | 2009-06-11 11:13:36 +0200 (Thu, 11 Jun 2009) | 1 line #6263 fixed syntax error in distutils.cygwinccompiler ........
* Merged revisions 73341 via svnmerge fromTarek Ziadé2009-06-111-0/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73341 | tarek.ziade | 2009-06-11 10:12:20 +0200 (Thu, 11 Jun 2009) | 1 line Fixed #5201: now distutils.sysconfig.parse_makefile() understands '53264' in Makefiles ........
* #5924: on Windows, a large PYTHONPATH (more than 255 chars) was completely ↵Amaury Forgeot d'Arc2009-06-091-0/+3
| | | | | | ignored. Will backport to 3.0.
* Merged revisions 73305 via svnmerge fromRonald Oussoren2009-06-081-0/+4
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73305 | ronald.oussoren | 2009-06-08 14:12:41 -0700 (Mon, 08 Jun 2009) | 4 lines This is a fix for Issue5809: you shouldn't specify both --enable-framework and --enable-shared ........
* Merged revisions 73190,73213,73257-73258,73260,73275,73294 via svnmerge fromGeorg Brandl2009-06-081-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73190 | georg.brandl | 2009-06-04 01:23:45 +0200 (Do, 04 Jun 2009) | 2 lines Avoid PendingDeprecationWarnings emitted by deprecated unittest methods. ........ r73213 | georg.brandl | 2009-06-04 12:15:57 +0200 (Do, 04 Jun 2009) | 1 line #5967: note that the C slicing APIs do not support negative indices. ........ r73257 | georg.brandl | 2009-06-06 19:50:05 +0200 (Sa, 06 Jun 2009) | 1 line #6211: elaborate a bit on ways to call the function. ........ r73258 | georg.brandl | 2009-06-06 19:51:31 +0200 (Sa, 06 Jun 2009) | 1 line #6204: use a real reference instead of "see later". ........ r73260 | georg.brandl | 2009-06-06 20:21:58 +0200 (Sa, 06 Jun 2009) | 1 line #6224: s/JPython/Jython/, and remove one link to a module nine years old. ........ r73275 | georg.brandl | 2009-06-07 22:37:52 +0200 (So, 07 Jun 2009) | 1 line Add Ezio. ........ r73294 | georg.brandl | 2009-06-08 15:34:52 +0200 (Mo, 08 Jun 2009) | 1 line #6194: O_SHLOCK/O_EXLOCK are not really more platform independent than lockf(). ........
* When _locale became a built-in module it was discovered that ``-lintl`` was notBrett Cannon2009-06-071-0/+7
| | | | | | | | added as a build flag as needed. This then led to the discovery that OS X framework builds did not have the LIBS var to pick up this flag. Fixes issue #6154. Thanks to Benjamin Peterson, Roumen Petrov, Erick Tryzelaar, Mark Dickinson, Evan Behar, and Ronald Oussoren for helping.
* Issue #6221: Delete test registry key before running the test.Martin v. Löwis2009-06-071-0/+2
|
* give the C implementation of TextIOWrapper the errors property #6217Benjamin Peterson2009-06-061-0/+4
|
* Issue #6137: The pickle module now translates module names when loadingAntoine Pitrou2009-06-041-0/+5
| | | | | | or dumping pickles with a 2.x-compatible protocol, in order to make data sharing and migration easier. This behaviour can be disabled using the new `fix_imports` optional argument.