summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Merged revisions 74044 via svnmerge fromAlexandre Vassalotti2009-07-171-4/+5
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74044 | alexandre.vassalotti | 2009-07-17 02:33:51 -0400 (Fri, 17 Jul 2009) | 3 lines Double-quote the test case for %zd printf() format support to avoid mangling the array declarations in it. ........
* Merged revisions 74039 via svnmerge fromAlexandre Vassalotti2009-07-171-15/+9
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74039 | alexandre.vassalotti | 2009-07-17 02:17:33 -0400 (Fri, 17 Jul 2009) | 2 lines Clean up the test case for broken poll(). ........
* Cache the results of all runtime checks.Alexandre Vassalotti2009-07-171-40/+68
| | | | | | | This will be helpful to people who want to compile Python with a cross-compiler. Now you can upload the configure script on your host machine, run it with caching enabled, and download the cached results on your build machine.
* Use AC_CHECK_SIZEOF to find the size of off_t, pthread_t and time_t.Alexandre Vassalotti2009-07-171-55/+13
|
* Blocked revisions 74031-74033 via svnmergeAlexandre Vassalotti2009-07-170-0/+0
| | | | | | | | | | | | | | | | | | | | | | | ........ r74031 | alexandre.vassalotti | 2009-07-17 00:24:45 -0400 (Fri, 17 Jul 2009) | 2 lines Use AC_CHECK_SIZEOF to find the size of off_t, pthread_t and time_t. ........ r74032 | alexandre.vassalotti | 2009-07-17 00:59:05 -0400 (Fri, 17 Jul 2009) | 4 lines Rename the useless AC_INCLUDES_DEFAULT and protect the includes. This is mostly an aesthetic change. ........ r74033 | alexandre.vassalotti | 2009-07-17 01:26:39 -0400 (Fri, 17 Jul 2009) | 8 lines Cache the results of all runtime checks. This will be helpful to people who want to compile Python with a cross-compiler. Now you can upload the configure script on your host machine, run it with caching enabled, and download the cached results on your build machine. ........
* The output() function takes only one string argument.Alexandre Vassalotti2009-07-171-2/+2
|
* Use the proper autoconf macro for checking byte order.Alexandre Vassalotti2009-07-171-1/+1
| | | | | | | The BYTEORDER_IS_BIG_ENDIAN macro is defined Objects/unicodeobject.c, thus the code was always emitting the little-endian machine format codes. This should fix the failure seen on the SPARC buildbot.
* Merged revisions 74024 via svnmerge fromTarek Ziadé2009-07-167-113/+237
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74024 | tarek.ziade | 2009-07-16 17:35:45 +0200 (Thu, 16 Jul 2009) | 1 line #6466 refactored distutils duplicate get_versions() functions (used to get gcc/ld/dllwrap versions) ........
* Don't check 64-bit test cases on 32-bit machine.Alexandre Vassalotti2009-07-151-1/+15
|
* Merged revisions 74006 via svnmerge fromAmaury Forgeot d'Arc2009-07-151-0/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74006 | amaury.forgeotdarc | 2009-07-14 01:11:54 +0200 (mar., 14 juil. 2009) | 2 lines Document the newly added codec ........
* Blocked revisions 74014 via svnmergeAlexandre Vassalotti2009-07-150-0/+0
| | | | | | | | | ........ r74014 | alexandre.vassalotti | 2009-07-15 14:19:47 -0400 (Wed, 15 Jul 2009) | 3 lines Issue #2389: Pickle array objects using a list representation for portability across different machine architectures and compatibility with Python 3.x. ........
* Fix omission in a comment.Alexandre Vassalotti2009-07-151-1/+1
|
* Issue #2389: Implement a portable mechanism for pickling array objects.Alexandre Vassalotti2009-07-153-60/+658
| | | | Reviewed by: Martin v. Löwis
* Merged revisions 74011 via svnmerge fromEzio Melotti2009-07-151-127/+127
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74011 | ezio.melotti | 2009-07-15 20:07:04 +0300 (Wed, 15 Jul 2009) | 1 line methods' names pep8ification ........
* PEP-8-ify r73389.R. David Murray2009-07-151-1/+2
|
* Importlib was using custom code to discover all test modules in importlib.test.Brett Cannon2009-07-154-37/+21
| | | | | This has now been removed in favor of using unittest's test discovery code in TestLoader.discover().
* Oops, really pass a bytes string to the ctypes function.Amaury Forgeot d'Arc2009-07-132-28/+28
|
* Merged revisions 74000-74001 via svnmerge fromAmaury Forgeot d'Arc2009-07-135-2/+383
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74000 | amaury.forgeotdarc | 2009-07-13 22:01:11 +0200 (lun., 13 juil. 2009) | 4 lines #1616979: Add the cp720 (Arabic DOS) encoding. Since there is no official mapping file from unicode.org, the codec file is generated on Windows with the new genwincodec.py script. ........ r74001 | amaury.forgeotdarc | 2009-07-13 22:03:21 +0200 (lun., 13 juil. 2009) | 2 lines NEWS entry for r74000. ........
* Merged revisions 73998 via svnmerge fromAmaury Forgeot d'Arc2009-07-136-1410/+1410
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73998 | amaury.forgeotdarc | 2009-07-13 21:14:17 +0200 (lun., 13 juil. 2009) | 3 lines Set svn:eol-style=CRLF on all Visual Studio solution files. This should allow direct compilation from a downloaded source tar ball. ........
* Issue #6314: logging: Extra checks on the "level" argument.Vinay Sajip2009-07-132-17/+23
|
* Unblocked revisions 73991 via svnmergeBenjamin Peterson2009-07-130-0/+0
| | | | | | | | ........ r73991 | benjamin.peterson | 2009-07-12 18:56:18 -0500 (Sun, 12 Jul 2009) | 1 line change encoding to utf-8 ........
* Blocked revisions 73991 via svnmergeBenjamin Peterson2009-07-120-0/+0
| | | | | | | | ........ r73991 | benjamin.peterson | 2009-07-12 18:56:18 -0500 (Sun, 12 Jul 2009) | 1 line change encoding to utf-8 ........
* merging revision 73986 from trunk:Kristján Valur Jónsson2009-07-121-4/+41
| | | | | http://bugs.python.org/issue6267 Add more tests for the xlmrpc.ServerProxy
* Document the thousands separator.Raymond Hettinger2009-07-121-1/+5
|
* Blocked revisions 73979 via svnmergeBenjamin Peterson2009-07-120-0/+0
| | | | | | | | ........ r73979 | benjamin.peterson | 2009-07-12 11:56:54 -0500 (Sun, 12 Jul 2009) | 1 line add versionadded ........
* Merged revisions 73952 via svnmerge fromAmaury Forgeot d'Arc2009-07-125-9/+9
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk (Only docstrings were modified, won't backport to 3.1) ........ r73952 | amaury.forgeotdarc | 2009-07-11 16:33:51 +0200 (sam., 11 juil. 2009) | 4 lines #2622 Import errors in email.message, from a py2app standalone application. Patch by Mads Kiilerich, Reviewed by Barry Warsaw. ........
* 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 ........