summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #6438: distutils.cygwinccompiler.get_versions was trying to use a re ↵Tarek Ziadé2009-07-123-10/+17
| | | | string pattern on a bytes
* merging revision 73932 from trunk:Kristján Valur Jónsson2009-07-111-2/+8
| | | | | http://bugs.python.org/issue6460 Need to be careful with thread switching when testing the xmlrpc server. The server thread may not have updated stats when the client thread tests them.
* Merged revisions 73931 via svnmerge fromEzio Melotti2009-07-111-90/+93
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73931 | ezio.melotti | 2009-07-10 23:25:56 +0300 (Fri, 10 Jul 2009) | 1 line more cleanups and if zlib -> skipUnless(zlib) ........
* Blocked revisions 73944 via svnmergeTarek Ziadé2009-07-110-0/+0
| | | | | | | | ........ r73944 | tarek.ziade | 2009-07-11 12:48:31 +0200 (Sat, 11 Jul 2009) | 1 line cleaned up distutils.build_ext module ........
* Merged revisions 73946 via svnmerge fromTarek Ziadé2009-07-113-2/+5
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73946 | tarek.ziade | 2009-07-11 12:55:27 +0200 (Sat, 11 Jul 2009) | 1 line fixed #6459: distutils.command.build_ext.get_export_symbols now uses 'PyInit' ........
* #6421: The self argument of module-level PyCFunctions is now a reference to ↵Georg Brandl2009-07-112-13/+9
| | | | the module object.
* #6430: remove mention of "w" array typecode.Georg Brandl2009-07-111-1/+0
|
* Merged revisions 73940 via svnmerge fromGeorg Brandl2009-07-111-1/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73940 | georg.brandl | 2009-07-11 12:37:38 +0200 (Sa, 11 Jul 2009) | 1 line #6430: add note about size of "u" type. ........
* Revert r73807, which removed code to be able to build _dbm with bsddb.Georg Brandl2009-07-111-2/+186
|
* #6358: Merge r73933: Add basic tests for the return value of os.popen().close().Amaury Forgeot d'Arc2009-07-113-1/+17
| | | | And fix the implementation to make these tests pass with py3k
* Merged revisions 73925-73926 via svnmerge fromTarek Ziadé2009-07-102-4/+54
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73925 | tarek.ziade | 2009-07-10 11:57:15 +0200 (Fri, 10 Jul 2009) | 1 line Added test coverage for distutils.command.build ........ r73926 | tarek.ziade | 2009-07-10 12:00:21 +0200 (Fri, 10 Jul 2009) | 1 line cleaned up distutils.command.build ........
* Merged revisions 73921 via svnmerge fromTarek Ziadé2009-07-102-4/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73921 | tarek.ziade | 2009-07-10 11:10:33 +0200 (Fri, 10 Jul 2009) | 1 line Fixed #6455 (the test shall use pyd files under win32, rather than so files) ........
* NEWS entry for r73918.Amaury Forgeot d'Arc2009-07-091-0/+3
|
* #6323: pdb doesn't deal well with SyntaxErrors.Amaury Forgeot d'Arc2009-07-091-1/+1
| | | | | | | | | It seems necessary to keep two layers of 'exec' (one in Bdb.run, one in Pdb._runscript); this allows the tracing function to be active when the inner 'exec' runs and tries to compile the real code. This partially revert r58127, the net effet of the two changes is to replace "exec('%s')" with "exec(%r)".
* Merged revisions 73916 via svnmerge fromAmaury Forgeot d'Arc2009-07-094-7/+10
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73916 | amaury.forgeotdarc | 2009-07-10 00:37:22 +0200 (ven., 10 juil. 2009) | 5 lines #6416: Fix compilation of the select module on Windows, as well as test_subprocess: PIPE_BUF is not defined on Windows, and probably has no meaning there. Anyway the subprocess module uses another way to perform non-blocking reads (with a thread) ........
* Merged revisions 73907-73908 via svnmerge fromR. David Murray2009-07-091-1/+1
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73907 | r.david.murray | 2009-07-09 12:17:30 -0400 (Thu, 09 Jul 2009) | 4 lines Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see if the test gives useful failure info on Solaris buildbot. ........ r73908 | r.david.murray | 2009-07-09 14:41:03 -0400 (Thu, 09 Jul 2009) | 6 lines Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames cleanup. If this fix works, it means that Solaris is unique among our platforms in what happens when shutil.rmtree is called on the current working directory (ie: it doesn't work on Solaris, but it does everywhere else). ........
* Unblocked revisions 73907 via svnmergeR. David Murray2009-07-090-0/+0
| | | | | | | | | ........ r73907 | r.david.murray | 2009-07-09 12:17:30 -0400 (Thu, 09 Jul 2009) | 4 lines Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see if the test gives useful failure info on Solaris buildbot. ........
* Blocked revisions 73907 via svnmergeR. David Murray2009-07-090-0/+0
| | | | | | | | | ........ r73907 | r.david.murray | 2009-07-09 12:17:30 -0400 (Thu, 09 Jul 2009) | 4 lines Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see if the test gives useful failure info on Solaris buildbot. ........
* Merged revisions 73901 via svnmerge fromTarek Ziadé2009-07-091-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73901 | tarek.ziade | 2009-07-09 09:42:42 +0200 (Thu, 09 Jul 2009) | 1 line PendingDeprecationWarning -> DeprecationWarning in build_ext ........
* Merged revisions 73895 via svnmerge fromTarek Ziadé2009-07-082-4/+29
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73895 | tarek.ziade | 2009-07-09 00:40:51 +0200 (Thu, 09 Jul 2009) | 1 line Sets the compiler attribute to keep the old behavior for third-party packages. ........
* Merged revisions 73841 via svnmerge fromEzio Melotti2009-07-081-38/+54
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73841 | ezio.melotti | 2009-07-04 17:58:27 +0300 (Sat, 04 Jul 2009) | 1 line if zlib -> skipUnless(zlib) and minor cleanups ........
* Blocked revisions 73891 via svnmergeMark Dickinson2009-07-070-0/+0
| | | | | | | | | ........ r73891 | mark.dickinson | 2009-07-07 16:08:28 +0100 (Tue, 07 Jul 2009) | 3 lines Issue #1523: Remove deprecated overflow masking in struct module, and make sure that out-of-range values consistently raise struct.error. ........
* Blocked revisions 73888 via svnmergeMark Dickinson2009-07-070-0/+0
| | | | | | | | | ........ r73888 | mark.dickinson | 2009-07-07 15:15:45 +0100 (Tue, 07 Jul 2009) | 3 lines Expand test coverage for struct.pack with native integer packing; reorganize the test_struct module to remove duplicated code and tests. ........
* Blocked revisions 73884 via svnmergeMark Dickinson2009-07-070-0/+0
| | | | | | | | ........ r73884 | mark.dickinson | 2009-07-07 12:08:23 +0100 (Tue, 07 Jul 2009) | 1 line Add skipping to struct test that only applies when overflow masking is in effect ........
* Merged revisions 73880 via svnmerge fromMark Dickinson2009-07-071-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73880 | mark.dickinson | 2009-07-07 11:18:22 +0100 (Tue, 07 Jul 2009) | 1 line Typo in error message ........
* http://bugs.python.org/issue6382Kristján Valur Jónsson2009-07-071-6/+22
| | | | added the shutdown_request() which can perform shutdown before calling close. This is needed for the ForkingMixIn because different close semantics are required for child and parent process. shutdown_request(), for TCP servers, calls socket.shutdown() and then calls close_request(). Therefore, this is not an backwards incompatible change, since subclasses that continue to override close_request() continue to work.
* Merged revisions 73873 via svnmerge fromAmaury Forgeot d'Arc2009-07-071-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73873 | amaury.forgeotdarc | 2009-07-07 08:49:41 +0200 (mar., 07 juil. 2009) | 2 lines #6420: Fix a compilation warning in the nis module, for OpenBSD and FreeBSD. ........
* Add a unittest for r73566.Gregory P. Smith2009-07-071-0/+8
|
* #6428: py3k requires that __bool__ return a bool (and not an int)Amaury Forgeot d'Arc2009-07-073-9/+11
| | | | Fix the error message and the documentation.
* Merged revisions 73864 via svnmerge fromTarek Ziadé2009-07-064-67/+119
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73864 | tarek.ziade | 2009-07-06 14:50:46 +0200 (Mon, 06 Jul 2009) | 1 line Fixed #6377: distutils compiler switch ignored (and added a deprecation warning if compiler is not used as supposed = a string option) ........
* Add the fix for issue 4509 to the mapping methods.Alexandre Vassalotti2009-07-052-26/+31
|
* Blocked revisions 73858 via svnmergeMark Dickinson2009-07-050-0/+0
| | | | | | | | | ........ r73858 | mark.dickinson | 2009-07-05 11:01:24 +0100 (Sun, 05 Jul 2009) | 3 lines Issues #1530559, #1741130: Fix various inconsistencies in struct.pack integer packing, and reenable some previously broken tests. ........
* Add NEWS entries for the changes I made recently.Alexandre Vassalotti2009-07-051-0/+10
|
* Issue 4005: Remove .sort() call on dict_keys object.Alexandre Vassalotti2009-07-052-2/+7
| | | | | | This caused pydoc to fail when there was a zip file in sys.path. Patch contributed by Amaury Forgeot d'Arc.
* Blocked revisions 73854 via svnmergeAlexandre Vassalotti2009-07-050-0/+0
| | | | | | | | ........ r73854 | alexandre.vassalotti | 2009-07-05 02:33:41 -0400 (Sun, 05 Jul 2009) | 2 lines Backport test cases added in r73852. ........
* Blocked revisions 73846-73847 via svnmergeAlexandre Vassalotti2009-07-050-0/+0
| | | | | | | | | | | | | | | ........ r73846 | alexandre.vassalotti | 2009-07-05 00:22:40 -0400 (Sun, 05 Jul 2009) | 6 lines Issue 2370: Add Python 3 warnings for the removal of operator.isCallable and operator.sequenceIncludes. Patch contributed by Jeff Balogh (and updated slightly by me). ........ r73847 | alexandre.vassalotti | 2009-07-05 00:25:46 -0400 (Sun, 05 Jul 2009) | 2 lines Fix bad variable name in r73846. ........
* Fix array.extend and array.__iadd__ to handle the case where an arrayAlexandre Vassalotti2009-07-052-3/+18
| | | | | | is extended with itself. This bug is specific the py3k version of arraymodule.c
* Add more test cases to BaseTest.test_memoryview_no_resize.Alexandre Vassalotti2009-07-051-0/+6
|
* Issue 4509: Do not modify an array if we know the change would resultAlexandre Vassalotti2009-07-052-0/+24
| | | | in a failure due to exported buffers.
* http://bugs.python.org/issue6381Kristján Valur Jónsson2009-07-041-1/+6
| | | | merging revision 73819 from trunk
* Revert last change, which was incorrect.Kristján Valur Jónsson2009-07-043-8/+7
|
* http://bugs.python.org/issue6381Kristján Valur Jónsson2009-07-043-7/+8
| | | | merging revision 73819 from trunk
* change deprecated unittest method calls into their proper names.Gregory P. Smith2009-07-047-151/+151
|
* Merged revisions 73834 via svnmerge fromTarek Ziadé2009-07-042-29/+11
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73834 | tarek.ziade | 2009-07-04 04:59:19 +0200 (Sat, 04 Jul 2009) | 1 line using print statements when used for user interaction ........
* Merged revisions 73825-73826 via svnmerge fromGregory P. Smith2009-07-043-30/+120
| | | | | | | | | | | | | | | | | | | | | 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 73818 via svnmerge fromGregory P. Smith2009-07-042-0/+11
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73818 | gregory.p.smith | 2009-07-03 13:48:31 -0700 (Fri, 03 Jul 2009) | 2 lines Adds the select.PIPE_BUF attribute to expose the system constant. ........
* Merged revisions 73827 via svnmerge fromTarek Ziadé2009-07-042-2/+4
| | | | | | | | | | 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 ........
* #6398 typo: versio. -> version.Ezio Melotti2009-07-041-1/+1
|
* http://bugs.python.org/issue6267Kristján Valur Jónsson2009-07-031-5/+5
| | | | Incorrect exception handling for xmlrpclient retry
* Merged revisions 73814-73815 via svnmerge fromTarek Ziadé2009-07-032-25/+41
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73814 | tarek.ziade | 2009-07-03 21:01:12 +0200 (Fri, 03 Jul 2009) | 1 line basic tests to raise distutils.file_util coverage ........ r73815 | tarek.ziade | 2009-07-03 21:14:49 +0200 (Fri, 03 Jul 2009) | 1 line cleaned distutils.file_util ........